摘要: AttributeError 试图访问一个对象没有的树形,比如foo.x,但是foo没有属性x IOError 输入/输出异常;基本上是无法打开文件 ImportError 无法引入模块或包;基本上是路径问题或名称错误 IndentationError 语法错误(的子类) ;代码没有正确对齐 Ind 阅读全文
posted @ 2018-05-24 12:34 random_lee 阅读(154) 评论(0) 推荐(0) 编辑
摘要: def bulk(self): print("%s is yelling...." %self.name) class Dog(object): def __init__(self,name): self.name = name def eat(self,food): print("%s is ea 阅读全文
posted @ 2018-05-24 10:55 random_lee 阅读(53) 评论(0) 推荐(0) 编辑