Comp
Comp
SECONDARY SCHOOL
SECTION: commerce
ROLL NO:
TOPIC: BANK MANAGEMENT SYSTEM
ACKNOWLEDGEMENT
1. Acknowledgment
2. Certificate
4. Source Code
5. Output Screen
7. Bibliography
FEATURES OF THE SYSTEM-: PROPOSED
if account:
print("\nLogin Successful!")
return account # Return the user's account details
else:
print("\nInvalid Customer ID or Password!")
return None
if choice == '1':
create_account() # Create a new account
elif choice == '2':
account = login() # User login
if account:
while True:
print("\n--- Account Menu ---")
print("1. Display Account Details")
print("2. Deposit Money")
print("3. Withdraw Money")
print("4. Delete Account")
print("5. Logout")
sub_choice = input("Enter your choice: ")
if sub_choice == '1':
display_account(account) # Show account details
elif sub_choice == '2':
deposit(account) # Deposit money
elif sub_choice == '3':
withdraw(account) # Withdraw money
elif sub_choice == '4':
if delete_account(account): # Delete account
break
elif sub_choice == '5':
print("Logged out successfully!")
break
else:
print("Invalid choice!")
elif choice == '3':
print("Exiting system. Goodbye!")
break
else:
print("Invalid choice! Please try again.")
1)main menu:-
2)creating acc:-
3)log in acc:-
4)acc details:-
5)Deposit Money :-
6)withdraw money:-
7)delete acc:-
8)Log out:-
HARDWAE and SOFTWARE REQIRMENTS
HARDWARE REQUIRMENTS:
Intel(R) Core(TM)2 Duo CPU E7500 @ 2.93GHz
Processor
memory 4.00 GB
Hard disk 50 MB
SOFTWARE REQUIRMENTS:
BOOKS REFERRED:
SITES VISITED:
➤YouTube.com