forked from HarshwardhanPatil07/HactoberFest2024
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Bank Managing System
204 lines (180 loc) · 6.07 KB
/
Bank Managing System
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
import pickle
import os
import pathlib
class Account:
accNo = 0
name = ''
deposit = 0
type = ''
def createAccount(self):
self.accNo = int(input("Enter your AccountN umber : "))
self.name = input("Enter your Account Name : ")
self.type = input("Enter your Account type [C/S] : ")
self.deposit = int(input("Enter The Initial Amount : "))
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 type of 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 getAcccountHolderName(self):
return self.name
def getAccountType(self):
return self.type
def getDeposit(self):
return self.deposit
def intro():
print("\t\t\t\t*****************************")
print("\t\t\t\tBANK ACCOUNT MANAGING SYSTEMS")
print("\t\t\t\t*****************************")
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 records found")
if not found:
print("No existing record with this Account 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 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")
elif num2 == 2:
amount = int(input("Enter the Amount to withdraw : "))
if amount <= item.deposit:
item.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 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.append(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 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("\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. : "))
displaySp(num)
elif ch == '5':
displayAll();
elif ch == '6':
num = int(input("\tEnter The account No. : "))
deleteAccount(num)
elif ch == '7':
num = int(input("\tEnter The account No. : "))
modifyAccount(num)
elif ch == '8':
print("\tThanks for using Bank Management Systems")
break
else:
print("Invalid choice")