Bank Management System (Main Content) - 1
Bank Management System (Main Content) - 1
Bank Management System (Main Content) - 1
1. Bonafide certificate
2. Acknowledgement
3. Introduction
4. Operation
5. System Analysis
6. Source Code
7. Output
8. Conclusion
9. Cd
Introduction
PURPOSE:
Bank
Management
System
Methods Database
(BANK)
Relation
open_acc()
(SBI)
deposit()
withdraw()
enquiry()
view()
list_all()
modify()
close_acc()
BANK MANAGEMENT SYSTEM
(SOURCE CODE)
import os
import mysql.connector as sc
import datetime as dt
con.commit()
print('************************************************************')
print("\t\tDetails Succesfully Updated")
print('************************************************************')
ch=input("\tDo you want to Update another record?(y/n)")
con.close()
except:
print('************************************************************')
print("\t\tError!!!... during updating.")
print('************************************************************')
ch=input("\tDo you want to try with another data?(y/n)")
#Main
ch=1
while ch!=0 :
os.system('cls')
print('************************************************************')
print('* Bank Management System *')
print('************************************************************')
print('* *')
print('* 1. Open Bank Account *')
print('* 2. Deposit Amount *')
print('* 3. Withdraw Amount *')
print('* 4. Balance Enquiry *')
print('* 5. View Customer Details *')
print('* 6. View List of Customer *')
print('* 7. Modify Account Details *')
print('* 8. Close an Account *')
print('* 0. Exit *')
print('* *')
print('************************************************************')
ch=int(input(' Enter Option :- '))
if ch==1:
open_acc()
elif ch==2:
deposit()
elif ch==3:
withdraw()
elif ch==4:
enquiry()
elif ch==5:
view()
elif ch==6:
list_all()
elif ch==7:
modify()
elif ch==8:
close_acc()
SQL CODE
Mr. XYZ
Mrs. PQR
2. Deposit Amount
3. Withdraw Amount
4. Balance Enquiry
5.
Mr. XYZ
Mr. XYZ
Mrs. PQR
7. View List of customers -
Mr. XYZ
Miss. MNO
Mrs. ABC
Mr. UVW
9. Close an Account -
CONCLUSION
This project is based on the usage of Data Files in our day-to-day
lives. Hopefully it might be able to demonstrate how to put into
application the concept of the features of python to make our work
easier. It consists of the modular programming, SQL Connectivity
and other common features like structure, loops,condition
statements etc. which handle all the transactions of a Bank
management including opening an account and close it.
This concept can be utilised in other institutions and
organisations making least possible use of labour.
I hope it provides efficient methods for storing data in a concise
manner and proves to be useful in some context.