PY
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
# Simple BANK ATM application by Eranga.
# Your account have $1000 as initial balance
# You can Withdraw,Deposit money and Check Balance from this application.
# This is my first try with Python :)
# For seamless Experiance go to https://repl.it/GmEi/2
"""
NOTE: SoloLearn Doesn't allow to get user inputs multiple times but we can enter input series of inputs at once
Please Copy past below input value to Input Dialog box
1234
1
100
2
200
3
4
....
Input values Explained:
1234 => Pin Number
1 => Withdraw Money Option
100 => Withdraw Amount
2 => Deposit Money Option
200 => Deposit Amount
3 => Check Balance Option
4 => Exit Option
You can change input values and enjoy
"""
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run