-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathATM.py
52 lines (41 loc) · 1.41 KB
/
ATM.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
import time
print("Please insert your card")
time.sleep(5)
password = 1234
pin = int(input("Enter your PIN: "))
Bal = 35000
if pin == password:
while True:
print("""
1 == Balance Inquiry
2 == Withdraw Amount
3 == Deposit Amount
4 == Exit
""")
try:
option = int(input("Please select your service: "))
except ValueError:
print("Please enter a valid option.")
continue
if option == 1:
print(f"Your Current Balance is {Bal}")
elif option == 2:
withdrawal_amount = int(input("Enter withdrawal amount: "))
if withdrawal_amount > Bal:
print("Insufficient balance!")
else:
Bal -= withdrawal_amount
print(f"{withdrawal_amount} is debited from your account.")
print(f"Your current 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 updated balance is {Bal}")
elif option == 4:
print("Thank you for using the ATM service. Goodbye!")
break
else:
print("Invalid option. Please try again.")
else:
print("Wrong PIN entered.")