-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBanking.py
More file actions
71 lines (62 loc) · 1.91 KB
/
Banking.py
File metadata and controls
71 lines (62 loc) · 1.91 KB
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
# Python Banking Program
def show_balance(balance):
print("*********************")
print(f"Your balance is ${balance:.2f}")
print("*********************")
def deposit():
print("*********************")
amount = float(input("Enter an amount to be deposited: "))
print("*********************")
if amount < 0:
print("*********************")
print("That's not a valid amount")
print("*********************")
return 0
else:
return amount
def withdraw(balance):
print("*********************")
amount = float(input("Enter amount to be withdrawn: "))
print("*********************")
if amount > balance:
print("*********************")
print("Insufficient funds")
print("*********************")
return 0
elif amount < 0:
print("*********************")
print("Amount must be greater than 0")
print("*********************")
return 0
else:
return amount
def main():
balance = 0
is_running = True
while is_running:
print("*********************")
print(" Banking Program ")
print("*********************")
print("1.Show Balance")
print("2.Deposit")
print("3.Withdraw")
print("4.Exit")
print("*********************")
choice = input("Enter your choice (1-4): ")
if choice == '1':
show_balance(balance)
elif choice == '2':
balance += deposit()
elif choice == '3':
balance -= withdraw(balance)
elif choice == '4':
is_running = False
else:
print("*********************")
print("That is not a valid choice")
print("*********************")
print("*********************")
print("Thank you! Have a nice day!")
print("*********************")
if __name__ == '__main__':
main()