user_input = input('How old are you?: ')
if user_input >= 18:
print('You are an adult')
elif user_input < 18:
print('You are quite young')
except ValueError:
print('Please type in an integer')
它說,在除了的Python除了ValueError異常:
語法錯誤,請幫助。
您只能在'try'中使用'except'。 [見這些Python文檔。](https://docs.python.org/3/tutorial/errors.html#handling-exceptions) –
正如我在你的[上一個問題]中所述(http://stackoverflow.com/questions/33977659/how-do-i-compare-a-string-and-an-integer-in-python),_please閱讀[官方Python教程](https://docs.python.org/3.4/tutorial/index的.html)_。 – TigerhawkT3
會檢查出來,謝謝 – Keretto