这一节说一下异常except
继续沿用上一节的代码。我有益把文件名称字搞错。然后在结尾部分加上异常捕捉:
try: handler=open("12.txt")#在这里我特别将文件的名字搞错 for eachLine in handler: print(eachLine,end='') handler.close()except IOError as e: print(e)
他会出现报错的内容:
python本身包括了非常多异常,我们将会后面具体展开
就讲到这里。谢谢大家
------------------------------------------------------------------