-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathATM Simulation.py
56 lines (35 loc) · 1.09 KB
/
ATM Simulation.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
import time
print("Pleae insert your card")
time.sleep(5)
password=1234
pin =int(input("Enter your PIN"))
Bal = 35000
if pin==password:
while True:
print(""""
1 == Bal
2 == Withdraw Amount
3 == Deposit Amount
4 == exit
""")
try:
option=int(input("Please select your service"))
except:
print("Please enter a valid option")
if option==1:
print(f"Your Current Balance is{Bal}")
elif option==2:
withdrawal_amount = int(input("Enter the amount"))
if withdrawal_amount > Bal:
print(f"Insufficient Balance")
else:
Bal -= withdrawal_amount
print(f"{withdrawal_amount} amount is deducted from your account")
print(f"Your new balance is {Bal}")
elif option==3:
deposit_amount=int(input("please enter deposit amount"))
Bal += deposit_amount
print(f"{deposit_amount} is credited to your account")
print(f"Your current new balance is {Bal}")
elif option== 4:
print(f"Invalid option, try again")