#Python常见的异常类型 '''第一种数学数据异常''' #print(1/0) #ZeroDivisionError '''第二种,序列中没有这个索引''' lst=[11,22,33] #print(lst[3]) #IndexError '''第三种,映射中没有这个键''' dic={'name':'张三','age':20} #print(dic['gender']) #KeyError '''第四种,未声明和初始化对象''' #print(num) #NameError '''第五种,语法错误''' #int a=20 #SyntaxError '''第六种,传入无效参数''' #a=int('hello') #ValueError
标签:20,Python,常见,int,lst,print,异常 From: https://www.cnblogs.com/yin-qiu-moon/p/16626846.html