-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanking.py
254 lines (182 loc) · 5.58 KB
/
banking.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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
import pickle
import os
import pathlib
class Account:
def __init__(self):
self.accNo: 0
self.name:''
self.deposit:0
self.type=''
def createAccount(self):
self.accNo=int(input('enter the account number: '))
self.name = input('enter account holder name : ')
self.type = input('enter the type of the account : ')
self.deposit = int(input('enter the initial amount >=5000 for current'))
print('\n\n\nAccount Created')
# def showAccount(self):
# print('Account number:',self.accNo)
# print('Account holder name: ',self.name)
# print('Type of Account: ',self.type)
# print('Balance: ',self.deposit)
# def modifyAccount(self):
# print('Account number : ',self.accNo)
# self.name = input('modify account holder name : ')
# self.type = input('modify the type of the account : ')
# self.deposit = int(input('modify Balance'))
# def depositAmount(self,amount):
# self.deposit+=amount
# def withdrawAmount(self,amount):
# self.deposit-=amount
# def report(self):
# print(self.accNo,' ',self.name,' ',self.type,' ',self.deposit)
# def getAccountno(self):
# return self.accNo
# def getAccountholderName(self):
# return self.name
# def getAccountType(self):
# return self.type
# def getDeposit(self):
# return self.deposit
def intro():
print('**************')
print('**** BANK MANAGEMENT ****')
print('**************')
def writeAccount():
account = Account()
account.createAccount()
writeAccountsFile(account)
def displayAll():
file = pathlib.Path('accounts.data')
if file.exists():
infile = open('accounts.data','rb')
mylist = pickle.load(infile)
for item in mylist:
print(item.accNo,' ',item.name,' ',item.type,' ',item.deposit)
infile.close()
else:
print('no records to display')
def displaySp(num):
file = pathlib.Path('accounts.data')
if file.exists():
infile = open('accounts.data','rb')
mylist = pickle.load(infile)
infile.close()
found = False
for item in mylist:
if item.accNo == num:
print('your account balance is = ',item.deposit)
found =True
else:
print('no record found')
if not found:
print('no existing records with this number')
def depostAndwithdraw(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 item in mylist:
if item.accNo == num1:
if num2 == 1:
amount = int(input('enter the amount to deposit : '))
item.deposit += amount
print('your account is updated')
if num2 ==2:
amount = int(input('enter the amount to withdarw'))
if amount<=item.deposit:
item.deposit -= amount
else:
print('you cannot withdarw larger ammount')
else:
print('no records to search')
outfile = open('newaccounts.data','wb')
pickle.dump(mylist,outfile)
outfile.close()
os.rename('newaccounts.data','accounts.data')
def deleteAccount(num):
file = pathlib.Path('accounts.data')
if file.exists():
infile = open('accounts.data','rb')
oldlist = pickle.load(infile)
infile.close()
newlist =[]
for item in oldlist:
if item.accNo!= num:
newlist.apppend(item)
os.remove('accounts.data')
outfile = open('newaccounts.data','wb')
pickle.dump(newlist,outfile)
outfile.close()
os.rename('newaccounts.data','accounts.data')
def modifyAccount(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 item in oldlist:
if item.accNo == num:
item.name = input('enter the Account holder name: ')
item.type = input('enter the account type: ')
item.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')
ch = ''
num = 0
intro()
while ch!=8:
print('\tMAIN MENU')
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)')
ch = input()
if ch =="1":
writeAccount()
elif ch =="2":
num = int(input('\t Enter your account no: '))
depostAndwithdraw(num,1)
elif ch =="3":
num = int(input('\t Enter your account no: '))
depostAndwithdraw(num,2)
elif ch =='4':
num = int(input('\t Enter your account no: '))
displaySp(num)
elif ch == '5':
displayAll()
elif ch == '6':
num = int(input('\t Enter your account no: '))
deleteAccount(num)
elif ch == '7':
num = int(input('\t Enter your account no: '))
modifyAccount(num)
elif ch == '8':
print('thanks for using bank MANAGEMENT system')
break
else:
print('invalid choice')
ch = input('enter your choice: ')