-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbanking_system.py
131 lines (116 loc) · 3.93 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
from abc import ABCMeta, abstractmethod
from random import randint
class Account(metaclass=ABCMeta):
@abstractmethod
def createAccount():
return 0
@abstractmethod
def authenticate():
return 0
@abstractmethod
def withdraw():
return 0
@abstractmethod
def deposit():
return 0
@abstractmethod
def displayBalance():
return 0
class SavingsAccount(Account):
def __init__(self):
# [key][0] => name ; [key][1] => balance
self.savingsAccounts = {}
def createAccount(self, name, initialDeposit):
print()
self.accountNumber = randint(10000, 99999)
self.savingsAccounts[self.accountNumber] = [name, initialDeposit]
print("Account creation has been successful. Your account number is ",
self.accountNumber)
print()
def authenticate(self, name, accountNumber):
print()
if accountNumber in self.savingsAccounts.keys():
if self.savingsAccounts[accountNumber][0] == name:
print("Authentication Successful")
self.accountNumber = accountNumber
print()
return True
else:
print("Authentication Failed")
print()
return False
else:
print("Authentication Failed")
print()
return False
def withdraw(self, withdrawalAmount):
print()
if withdrawalAmount > self.savingsAccounts[self.accountNumber][1]:
print("Insufficient balance")
else:
self.savingsAccounts[self.accountNumber][1] -= withdrawalAmount
print("Withdrawal was successful.")
self.displayBalance()
print()
def deposit(self, depositAmount):
print()
self.savingsAccounts[self.accountNumber][1] += depositAmount
print("Deposit was successful.")
self.displayBalance()
print()
def displayBalance(self):
print("Avaialble balance: ",
self.savingsAccounts[self.accountNumber][1])
savingsAccount = SavingsAccount()
while True:
print()
print("Enter 1 to create a new account")
print("Enter 2 to access an existing account")
print("Enter 3 to exit")
userChoice = int(input())
print()
if userChoice is 1:
print()
print("Enter your name: ")
name = input()
print("Enter the initial deposit: ")
deposit = int(input())
savingsAccount.createAccount(name, deposit)
print()
elif userChoice is 2:
print()
print("Enter your name: ")
name = input()
print("Enter your account number: ")
accountNumber = int(input())
authenticationStatus = savingsAccount.authenticate(name, accountNumber)
print()
if authenticationStatus is True:
while True:
print()
print("Enter 1 to withdraw")
print("Enter 2 to deposit")
print("Enter 3 to display avialable balance")
print("Enter 4 to go back to the previous menu")
userChoice = int(input())
print()
if userChoice is 1:
print()
print("Enter a withdrawal amount")
withdrawalAmount = int(input())
savingsAccount.withdraw(withdrawalAmount)
print()
elif userChoice is 2:
print()
print("Enter an amount to be deposited")
depositAmount = int(input())
savingsAccount.deposit(depositAmount)
print()
elif userChoice is 3:
print()
savingsAccount.displayBalance()
print()
elif userChoice is 4:
break
elif userChoice is 3:
quit()