Bank - Management
Bank - Management
CLASS :XII A
Principal
ACKNOWLEDGMENT
I am especially indebted to our senior principal Mrs. Shyamala Lal who has
always been a source of encouragement and support and without whose inspiration
this project would not have been a successful. I would like to place on record heartfelt
thanks to her.
Above all I am thankful to the Almighty God as the present work has seen the
light of day due to his blessings.
INTRODUCTION
PROJECT ON BANK MANAGEMENT SYSTEM
"BANK MANAGEMENT SYSTEM" This project is useful for the bank employees
as well as customers to keep a track of account details. The emerging of digital system
made information available on finger tips. By automating the transactions one can view
the details as and when required in no time. This project emphases on creation of new
customer accounts, managing the existing account holders in the bank, by making
digital system one can generate daily reports, monthly reports and annual reports
The objective of this project is to let the students apply the programming
knowledge into a real- world situation/problem and exposed the students how
X. Printer : required
SOFTWARE REQUIREMENTS:
I. Windows OS
II. Python
III. MySQL
⮚ Interpreted
⮚ Platform Independent
⮚ High-level Language
⮚ Embeddable
⮚ Robust
print("****BANK TRANSACTION****")
#creating database
import mysql.connector
mydb=mysql.connector.connect(host="localhost",user="root",passwd="reshsql",database='myd
b')
mycursor=mydb.cursor()
mycursor.execute("use bank")
mycursor.execute("create table if not exists banktrans(acno char (4),amount int(6),dot date ,ttype
char(1),foreign key (acno) references bank_master(acno))")
mydb.commit()
while(True):
print("1=Create account")
print("2=Deposit money")
print("3=Withdraw money")
print("4=Display account")
print("5=Exit")
if(ch==1):
balance=0
mydb.commit()
elif(ch==2):
ttype="d"
mydb.commit()
elif(ch==3):
ttype="w"
mydb.commit()
#PROCEDURE FOR DISPLAYING THE ACCOUNT OF THE ACCOUNT HOLDER AFTER
HE/SHE ENTERS HIS/HER ACCOUNT NUMBER
elif(ch==4):
for i in mycursor:
print(i)
elif ch==5:
break
else:
break
OUTPUT
BIBLIOGRAPHY
1. Computer science With Python - Class XII By : SumitaArora
2. Website: https://www.youtube.com