Below is my code and the error is on line 4 "except" gives a syntax error... (this is a debugging and error catching assignment. I don't see what is wrong with it)
while True:
try:
userInputOne = input(int("How much time in hours a week, do you spend practicing? ")
except TypeError:
print("Oops! Practice time must be rounded to the nearest integer. It also needs to be a numerical value! ")
break
else:
userInputTwo = str(input"How good to do want to be? Enter 'very good', 'good', mediocre, 'not good' ")
if userInputTwo not in ('very good', 'good', 'mediocre', 'not good'):
print("Please use one of the options. ")
else:
print("Let's calculate...")
break