python的异常处理

python的异常处理:

 

Try-except语句

 

 

 

在上面的例子中,我们使用了两个占位符 {} 来表示要插入的变量的位置。然后,通过在format()方法中传递变量 name age 来替换这些占位符。  你还可以通过在占位符 {} 中添加索引来指定要替换的参数的顺序。例如:  

 

python name = "Alice" age = 25 print("My name is {1}, and I am {0} years old.".format(age, name))

输出结果为:  My name is Alice, and I am 2

 

 

 

多个except

 

 

 

 

 

 

 

 

多重异常捕获

 

 

 

Try-except语句嵌套

 

 

  

使用Finally释放代码块

 

 

 

 

 

自定义异常

 

 

手动引发异常,了解即可

 

 

posted @ 2023-10-29 10:23  Strive_ToLife  阅读(2)  评论(0编辑  收藏  举报