79.8k views
5 votes
create a python program that stimulates a simple ATM. the program should ask the user for their account balance and the amount the would want to withdraw.Ensure that the withdrawal amount is less than or equal to the account balance

1 Answer

7 votes

Final answer:

To create a python program that simulates a simple ATM, you can use the given code. It prompts the user for their account balance and the amount they want to withdraw. It then checks if the withdrawal amount is less than or equal to the account balance.

Step-by-step explanation:

To create a python program that simulates a simple ATM, you can use the following code:



account_balance = float(input('Enter your account balance: '))
withdraw_amount = float(input('Enter the amount you would like to withdraw: '))

if withdraw_amount <= account_balance:
account_balance -= withdraw_amount
print('Withdrawal successful. New account balance:', account_balance)
else:
print('Insufficient funds.')



This code prompts the user for their account balance and the amount they want to withdraw. It then checks if the withdrawal amount is less than or equal to the account balance. If it is, it subtracts the withdrawal amount from the account balance and displays the new account balance. If not, it notifies the user of insufficient funds.

User Sanchit
by
7.7k points