-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path6. Bank Application.py
113 lines (91 loc) · 3.58 KB
/
6. Bank Application.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
import random
import sys
class Bank:
def __init__(self,acc_no,name,deposit):
self.acc_no = acc_no
self.name = name
self.balance = deposit
def deposit(self,amt):
self.balance+=amt
def withdraw(self,amt):
self.balance-=amt
def acc_no_validation():
print("Enter your account no: ")
acc_no = str(input())
try:
if acc_no in accounts:
return accounts[acc_no]
except:
print("Sorry! Your account no is either invalid or doesn't exist")
return False
def valid_amount():
amt= int(input())
while amt<0:
print("Enter valid amount: ")
amt= int(input())
return amt
accounts = {}
print("Welcome to Vishal's Bank")
while True:
print("Choose any of the options:\n 1-Account Creation \n 2- Deposit\n 3- Withdraw\n 4-Check Balance \n 5-Transfer Money \n 6-Account Information \n 7-Exit")
print("Enter the option no:")
try:
option = int(input())
if option == 1:
print("Enter account holder's name:")
name = str(input())
print("Enter inital deposit amount:")
deposit = valid_amount()
acc_no = ''.join(str(random.randint(0,9)) for _ in range(5))
accounts[acc_no] = Bank(acc_no,name,deposit)
print("Thanks for joining in our Vishal's Bank family.\n Your account no is",accounts[acc_no].acc_no)
elif option == 2:
acc_no = acc_no_validation()
if acc_no:
print("Enter the amount to Deposit:")
dep_amt = valid_amount()
acc_no.deposit(dep_amt)
elif option == 3:
acc_no = acc_no_validation()
if acc_no:
print("Enter the amount to withdraw:")
withdraw_amt = valid_amount()
if withdraw_amt <= acc_no.balance:
acc_no.withdraw(withdraw_amt)
print("Your current balance is: ,",acc_no.balance)
else:
print("Insufficient balance.")
elif option == 4:
acc_no = acc_no_validation()
if acc_no:
print("Your current balance is: ,",acc_no.balance)
elif option == 5:
print("Enter Sender's account no:")
sender = acc_no_validation()
if sender:
print("Enter Receiver's account no:")
receiver = acc_no_validation()
if receiver:
print("Enter amount to transfer:")
transfer_amt = valid_amount()
if sender.balance >=transfer_amt:
sender.withdraw(transfer_amt)
receiver.deposit(transfer_amt)
print(f"Transferred successfuly, sender's account is debited {transfer_amt}. Current balance is {sender.balance}")
else:
print("Funds insufficient in the account")
elif option == 6:
acc_no = acc_no_validation()
if acc_no:
print("Account information is: ")
print("Account no: ",acc_no.acc_no)
print("Account holder name: ",acc_no.name)
print("Balance: ",acc_no.balance)
elif option == 7:
print("Thanks for using our services. Have a nice day!!!")
sys.exit()
else:
print("Enter valid option!!!")
except ValueError:
print("Please enter a valid option number!")
continue