Miguel C
Results
1
comments of
Miguel C
I think you should add try/catch blocks to avoid crashes: # Safe input for choice try: choice = int(input("Enter your choice: ")) except ValueError: print("Please enter a valid number (1-4).")...