I keep getting this error code when submittting my work by the auto grader and I want help before I contact my prof. My assignment is to represent an online bank application.
======================================================================
Your output: $816.60
Expected : $816.6
while True:
print('\nMenu')
print("0 โ Make a deposit")
print("1 โ Make a withdrawal")
print("2 โ Display account value")
print('')
choice = input("Please make a selection: ")
if choice == "0":
amount = float(input("How much would you like to deposit?: "))
if amount > 0:
balance += amount
print(f"Your current balance is ${balance:.2f}")
elif choice == "1":
amount = float(input("How much would you like to withdraw?: "))
if 0 < amount <= balance:
balance -= amount
print(f"Your current balance is ${balance:.2f}")
else:
print("Not enough balance. Withdrawal cancelled.")
elif choice == "2":
print(f"Your current balance is {balance:.2f}")
else:
print("Invalid entry, please try again.")
back_to_menu = input("Would you like to return to the main menu (Y/N)?: ").upper()
if back_to_menu != "Y":
print("Thank you for banking with us!")
break