Python 错误处理
The try
块允许你测试一段代码是否有错误。
The except
块允许你处理错误。
The finally
块允许你执行代码,无论 try 和 except 块的结果如何。
异常处理
当发生错误(我们称之为异常)时,Python 通常会停止并生成错误消息。
可以使用 try
语句来处理这些异常。
由于 try 块引发了错误,因此将执行 except 块。
如果没有 try 块,程序将崩溃并引发错误。
The try
块允许你测试一段代码是否有错误。
The except
块允许你处理错误。
The finally
块允许你执行代码,无论 try 和 except 块的结果如何。
当发生错误(我们称之为异常)时,Python 通常会停止并生成错误消息。
可以使用 try
语句来处理这些异常。
由于 try 块引发了错误,因此将执行 except 块。
如果没有 try 块,程序将崩溃并引发错误。
If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]
If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]