标签:print error: div 异常类 rod imp 文件操作 finally 错误
SyntaxError:代码拼写出错
AttributeError:属性异常
try:
x = 5 / 0
print(x)
except ZeroDivisionError:
print('不能除零')
except:
print('其他错误')
else:
print('没有异常')
class Person:
def __init__(self,name):
self.name = name
f = open('hello.txt')
p = Person('Peter')
try:
f.read()
except:# 捕获异常
print('文件操作遇到错误!')
finally:#不管有没异常,这一步都要执行
f.close()
def mothod():
raise NotImplementedError('该方法代码还未实现')
mothod()
标签:print error: div 异常类 rod imp 文件操作 finally 错误
原文地址:https://www.cnblogs.com/linyk/p/11482084.html