在编写代码并尝试应用它们时,“try”和“except”函数如何工作?我知道他们做了什么,但你如何应用它们?我在完成家庭作业时遇到了麻烦
答案 0 :(得分:0)
如果你的意思是实际使用它们,那么这就是你在Python中的表现:
try:
run_code_that_possibly_raises_an_exception() # Try to run this code
except Exception:
handle_exception() # Called if exception Exception is raised
finally:
perform_cleanup() # Always called
您可以在此处阅读错误和异常处理:http://docs.python.org/2/tutorial/errors.html