Cloth Store Mangement System
Cloth Store Mangement System
PAGE
SER DESCRIPTION
NO
01 INTRODUCTION
03 SOURCE CODE
04 OUTPUT
05 BIBLIOGRAPHY
1
BANK
MANAGEMENT
SYSTEM
2
PROJECT ON CREATING BANK MANAGEMENT SYSYTEM:
INTRODUCTION:
Banking Management System can be used by bank employees and /or customers
depending on the bank policies. It can be used by several employees at the same
time with the required rights. It can be accessed using any general web browser with
graphical interface. Objectives are goals, and it is toward these results that all
activities are directed. Objectives may change over time, but they are looked upon as
firm and binding contracts once formulated. Bank objectives are usually stated in short,
concise terms and limited to ten to twelve items. A few items from a list of one bank s
objectives follow:
1. Our business is selling financial services in Oregon and in selected regional, national,
and international markets. We will extend our business into areas that provide
sound expansion opportunities meeting predetermined profit criteria.
2. We will strive for stability in earning growth, acquiring high-quality
investments, and pursuing sound and innovative tactics ‘. Through strategic planning
and strong management, we will aggressively expand income sources while
remaining in control of costs.
3. Management will provide continuity of policies and directions. Changes will be
implemented quickly and in a manner that considers both individual and
corporate needs.
3
SOURCE CODE:
def create_account(accounts):
if account_number in accounts:
return
while True:
try:
if initial_balance < 0:
break
except ValueError as e:
print(e)
def deposit(accounts):
return
while True:
4
try:
if amount <= 0:
break
except ValueError as e:
print(e)
accounts[account_number]['balance'] += amount
def withdraw(accounts):
return
while True:
try:
if amount <= 0:
break
except ValueError as e:
print(e)
5
print("Please enter a valid number.")
accounts[account_number]['balance'] -= amount
def check_balance(accounts):
if account_number in accounts:
else:
def list_accounts(accounts):
if not accounts:
else:
def main():
accounts = {}
while True:
print("2. Deposit")
6
print("3. Withdraw")
print("6. Exit")
if choice == '1':
create_account(accounts)
deposit(accounts)
withdraw(accounts)
check_balance(accounts)
list_accounts(accounts)
print("Exiting...")
break
else:
if __name__ == "__main__":
main()
7
OUTPUTS:
Creating an Account:
8
Depositing Money:
Withdrawing Money:
Checking Balance:
9
Listing Accounts:
Exiting:
Bibliography:
10
1.Computer science With Python - Class XI
By : SumitaArora
By : Praveen M Jigajinni
3. Website: https://www.w3resource.com***
11