我在理解在 Python 中使用“except”语句的方法时遇到了一些麻烦。我现在是一个可怕的编码员,所以我提前道歉。
这是我试图运行的小代码:
def mathWorks():
print " Answer the following: 5 + x = 10"
x = int(raw_input("Please type your answer: "))
if x == 5:
print "You are correct!"
else:
print "You are incorrect!"
break
except ValueError:
print "That is not an integer!"
mathWorks()
我认为我想要完成的事情是不言自明的。不幸的是,这段代码中的“except”语句出现“无效语法”。
我在这里做错了什么?