-
Notifications
You must be signed in to change notification settings - Fork 3
/
Banking_System.py
227 lines (188 loc) · 6.53 KB
/
Banking_System.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
import pickle
import os
import pathlib
class Accounts:
accountNo = 0
name = ''
deposit = 0
type = ''
def createAccounts(self):
self.accountNo= int(input("Enter thr account no : "))
self.name= input("Enter the account holder name : ")
self.type= input("Enter the type of account [C/S] : ")
self.deposit= int(input("Enter The Initial amount(>= 500 for Saving and >=1000 for current : "))
print("\n\n\nAccount Created")
def showAccounts(self):
print("Account Number : ",self.accountNo)
print("Account Holder Name : ",self.name)
print("Type of Account :",self.type)
print("Balance : ",self.deposit)
def modifyAccounts(self):
print("Account Number : ",self.accountNo)
self.name = input("Modify Account Holder Name : ")
self.deposit = int(input("Modify Balance : "))
def depositAmounts(self,amount):
self.deposit += amount
def withdrawAmounts(self,amount):
self.deposit -= amount
def report(self):
print(self.accountNo, " ",self.name, " ",self.type, " ",self.deposit)
def getAccountsNo(self):
return self.accountNo
def getAccountsHolderName(self):
return self.name
def getAccountsType(self):
return self.type
def getDeposit(self):
return self.deposit
def intro():
print("\t\t\t\t*******************************************")
print("\t\t\t\t\t\tBANK MANAGEMENT SYSTEM")
print("\t\t\t\t*******************************************")
print("\t\t\t\tBrought To You By - Prasun Roy")
print("\t\t\t\tPress enter for main menu")
input()
def writeAccounts():
account = Accounts()
account.createAccounts()
writeAccountsFile(account)
def displayAll():
file = pathlib.Path("accounts.data")
if file.exists():
infile = open('accounts.data','rb')
mylists =pickle.load(infile)
for items in mylists :
print(items.accountNo," ",items.name," ",items.type," ",items.deposit )
infile.close()
else:
print("No records to display")
def displayssp(num):
file = pathlib.Path("accounts.data")
if file.exists():
infile = open("accounts.data", "rb")
mylist = pickle.load(infile)
infile.close()
found = False
for items in mylist:
if items.accountNo == num:
print("Your Account Balance is = ",items.deposit)
found = True
else:
print("No records to search")
if not found:
print("No existing record with this number")
def depositAndWithdraw(num1,num2):
file = pathlib.Path("accounts.data")
if file.exists():
infile = open("accounts.data","rb")
mylist = pickle.load(infile)
infile.close()
os.remove('accounts.data')
for items in mylist:
if items.accountNo == num1 :
if num2 == 1:
amount = int(input("Enter the amount of deposit : "))
items.deposit += amount
print("Your account is updated")
elif num2 == 2:
amount = int(input("Enter the amount to withdraw : "))
if amount <= items.deposit:
items.deposit -= amount
else :
print("You cannot withdraw larger amount")
else:
print("No records to Search")
outfile = open('newaccounts.data','wb')
pickle.dump(mylist,outfile)
outfile.close()
os.rename('newaccounts.data','accounts.data')
def deleteAccounts(num):
file = pathlib.Path("accounts.data")
if file.exists():
infile = open('accounts.data','rb')
oldlist = pickle.load(infile)
infile.close()
newlist = []
for items in oldlist:
if items.accountNo != num:
newlist.append(items)
os.remove('accounts.data')
outfile =open('newaccounts.data','wb')
pickle.dump(newlist,outfile)
outfile.close()
os.rename('newaccounts.data','accounts.data')
def modifyAccounts(num):
file = pathlib.Path("accounts.data")
if file.exists():
infile = open('accounts.data','rb')
oldlist = pickle.load(infile)
infile.close()
os.remove('accounts.data')
for items in oldlist :
if items.accountNo == num:
items.name = input("Enter the account holder name : ")
items.type = input("Enter the account type : ")
items.deposit = int(input("Enter the amount : "))
outfile = open('newaccounts.data','wb')
pickle.dump(oldlist,outfile)
outfile.close()
os.rename('newaccounts.data','accounts.data')
def writeAccountsFile(account):
file = pathlib.Path("accounts.data")
if file.exists():
infile = open('accounts.data','rb')
oldlist = pickle.load(infile)
oldlist.append(account)
infile.close()
os.remove('accounts.data')
else:
oldlist =[account]
outfile = open('newaccounts.data','wb')
pickle.dump(oldlist,outfile)
outfile.close()
os.rename('newaccounts.data','accounts.data')
#front-end of the program
ch=''
num=0
#intro()
print("\t\t\t\t*******************************************")
print("\t\t\t\t\t\tBANK MANAGEMENT SYSTEM")
print("\t\t\t\t*******************************************")
print("\t\t\t\tBrought To You By - Prasun Roy")
print("\n\n\n\n")
print("\tMAIN MANU")
print("\t1. NEW ACCOUNT")
print("\t2. DEPOSIT AMOUNT")
print("\t3. WITHDRAW AMOUNT")
print("\t4. BALANCE ENQUIRY")
print("\t5. ALL ACCOUNT HOLDER LIST")
print("\t6. CLOSE AN ACCOUNT")
print("\t7. MODIFY AN ACCOUNT")
print("\t8. EXIT")
print("\tSelect Your Option [1-8]")
while ch !=8:
ch = input("Enter your choice :")
if ch == '1':
writeAccounts()
elif ch == '2':
num = int(input("\tEnter The Account No. : "))
depositAndWithdraw(num,1)
elif ch == '3':
num = int(input("\tEnter The Account No. : "))
depositAndWithdraw(num,2)
elif ch == '4':
num = int(input("\tEnter The Account No. : "))
displayssp(num)
elif ch == '6':
num = int(input("\tEnter The Account No. : "))
deleteAccounts(num)
elif ch == '5':
displayAll()
elif ch == '7':
num = int(input("\tEnter The Account No. : "))
modifyAccounts(num)
elif ch == '8':
print("\tThanks for using Bank Management System")
break
else:
print("Invalid Choice")