Напишите попытку..кроме кода для этой проблемы
Вопрос заключается в следующем:
Rewrite your pay program using try and except so that your program handles non-numeric input gracefully by printing a message and exiting the program.
Что я уже пробовал:
I have tried several samples, including a weak if version: Hours = input('Enter Hours: ') Rate = input('Enter Rate: ') if (int(Hours) or int(Rate) < 1): print('Error, please enter a numeric value')
Christian Graus
Читать вопрос. Он просит вас поймать исключение.