-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprg17.py
43 lines (39 loc) · 926 Bytes
/
prg17.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
class Bank:
def __init__(self):
self.acc_no=0
self.bal=0
print(self.bal)
def addbank(self):
self.acc_no=int(input("Enter the Bank Account Number :"))
def deposit(self):
amt=int(input("Enter Amount for Deposit :"))
self.bal=self.bal+amt
print("Amount Deposited!")
def withdraw(self):
amt=int(input("Enter Amount for Withdraw :"))
self.bal=self.bal-amt
print("\nAmount Withdrawed!")
def transfer(self):
print("transfer")
def balance(self):
print("Total Balance :",self.bal)
b=Bank()
ch=-1;
while(ch!=0):
print("1 - Add Bank Accoount")
print("2 - Deposit Money")
print("3 - Withdraw Money")
print("4 - transfer")
print("5 - Show balance")
print("0 - Exit")
ch=int(input("Enter your Choice :"))
if(ch==1):
b.addbank()
if(ch==2):
b.deposit()
if(ch==3):
b.withdraw()
if(ch==4):
b.transfer()
if(ch==5):
b.balance()