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.