-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAlternate BankAccount
217 lines (150 loc) · 6.17 KB
/
Alternate BankAccount
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
from Transaction import *
class BankAccount:
# global variables used throughout the program
OVERDRAFT_FEE = 20.00
INTEREST_RATE = 0.075
_accountNumber = 1000
# constructor to make the actual bank account
def __init__(self, firstName = "", lastName = "", balance = 0):
# ***** handles the first name *****
# if name isnt given, set the name
if(firstName == ""):
self.setFirstName()
# if it is given check the name for format
else:
# checks if valid length of the name
if(len(firstName) > 25):
self.setFirstName()
# checks for special characters in name
specChars = '[@_!#$%^&*()<>?/\|}{"~:]'
for char in specChars:
if(char in firstName):
self.setFirstName()
self._firstName = firstName
# ***** handles the last name *****
# if name isnt given, set the name
if(lastName == ""):
self.setLastName()
else:
# checks if valid length of the name
if(len(lastName) > 40):
self.setLastName()
# checks for special characters in name
specChars = '[@_!#$%^&*()<>?/\|}{"~:]'
for char in specChars:
if(char in lastName):
self.setLastName()
self._lastName = lastName
# ***** handles account number *****
self._accountNum = BankAccount._accountNumber
BankAccount._accountNumber = BankAccount._accountNumber + 1
# ***** handles the transactions *****
transactions = []
self._transactions = transactions
# ***** handles the overdrawn count of the account *****
overdraw = 0
self._overdrawNum = overdraw
# ***** handles the balance *****
self._balance = balance
# Deposits the specified amount into the bank account
def deposit(self, amount = 0):
trans = Transaction(1)
self._balance = self._balance + trans.getAmount()
self._transactions.append(trans)
# makes an interest payment into the account based on the
# set interest rate.
def interest(self):
# getting trans type
trans = Transaction(3)
#
balance = self._balance
self._interestDeposit = BankAccount.INTEREST_RATE * balance
self._balance = self._balance + self._interestDeposit
self._transactions.append(trans)
def withdrawal(self, withdrawalAmount = 0):
trans = Transaction(2)
if(trans.getAmount() > self._balance + 250):
print("Transaction is denied")
else:
amount = trans.getAmount()
self._transactions.append(trans)
self._balance = self._balance - trans.getAmount()
if(self._balance < 0):
self._overdrawNum = self._overdrawNum + 1
penaltyTrans = Transaction(2, BankAccount.OVERDRAFT_FEE)
self._balance = self._balance - BankAccount.OVERDRAFT_FEE
print("Account is overdrawn.")
self._transactions.append(trans)
return amount
return amount
def transfer(self, otherAccount):
if(otherAccount.withdrawal() != None):
trans = Transaction(4)
otherAccount.withdrawal(trans.getAmount())
self.deposit(trans.getAmount())
def setFirstName(self):
firstName = input("Enter the first name of the account: ")
if(firstName == ""):
self.setFirstName()
# if it is given check the name for format
else:
# checks if valid length of the name
if(len(firstName) > 25):
self.setFirstName()
# checks for special characters in name
specChars = '[@_!#$%^&*()<>?/\|}{"~:]'
for char in specChars:
if(char in firstName):
self.setFirstName()
self._firstName = firstName
def setLastName(self):
lastName = input("Enter the last name of the account: ")
if(lastName == ""):
self.setLastName()
else:
# checks if valid length of the name
if(len(lastName) > 40):
self.setLastName()
# checks for special characters in name
specChars = '[@_!#$%^&*()<>?/\|}{"~:]'
for char in specChars:
if(char in lastName):
self.setLastName()
self._lastName = lastName
def setAccountNum(self):
pass
def setTransactions(self):
pass
def setOverdrawCount(self):
pass
def setBalance(self):
pass
def getFirstName(self):
return self._firstName
def getLastName(self):
return self._lastName
def getAccountNum(self):
return self._accountNum
def showTransactions(self):
# trans = []
# loops through and prints transaction history for that class
#for item in self._transactions:
#trans.append(item)
#return self._transactions
pass
#def getOverdrawCount(self):
#return self._overdrawNum
#def getBalance(self):
#return self._balance
# Prints all of the transaction instance variables.
# @return: The formatted, human readable string of the transaction
def __str__ (self):
transaction = []
for item in self._transactions:
transaction.append(item)
return ("Account Details - First Name: %s, Last Name: %s, Account Number: %d, Balance: $%.2f, Transactions: %s"\
%(self._firstName, self._lastName, self._accountNum, self._balance, transaction))
# Prints all of the transaction instance variables.
# @return: The formatted, machine readable string of the transaction
#def __repr__ (self):
# return ("Transaction(tNumber = %d, amount = $%.2f, date = %s, tType = %s)" %(self._tNumber, self._amount, self._date, self._tType))