File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 11# TODO: validate if id given is an integer
22from account import Account
33
4+ # for i in range(1, 9):
5+ # eval(f"account_{i} = Account({i}, 100)")
6+
47account_1 = Account (1 , 100 )
58account_2 = Account (2 , 100 )
69account_3 = Account (3 , 100 )
@@ -37,14 +40,13 @@ def main_menu(id):
3740 withdraw_amount = float (
3841 prompt ("Enter the amount of money you would like to withdraw: " ))
3942 eval (f"account_{ id } .withdraw({ withdraw_amount } )" )
40- print (f"${ withdraw_amount } was withdrawed successfully\n Your new balance is { account_ { id } .get_balance ()} " )
43+ print (f"${ withdraw_amount } was withdrawed successfully\n Your new balance is { eval ( ' account_' + id + ' .get_balance()' )} " )
4144 get_id ()
4245 elif (selection == 3 ):
4346 deposit_amount = float (
4447 prompt ("Enter the amount of money you would like to deposit: " ))
4548 eval (f"account_{ id } .deposit({ deposit_amount } )" )
46- print (f"${ deposit_amount } was deposited successfully\n \
47- Your new balance is { account_ {id }.get_balance ()} " )
49+ print (f"${ deposit_amount } was deposited successfully\n Your new balance is { eval ('account_' + id + '.get_balance()' )} " )
4850 get_id ()
4951 elif (selection == 4 ):
5052 exit ()
You can’t perform that action at this time.
0 commit comments