初学Python,遇到AttributeError: 'Person' object has no attribute 'firstname'问题的解决方法
最近在学习Python的类和对象内容时,尝试一个关于Person类的代码,出现一个问题:AttributeError: 'Person' object has no attribute 'firstname'。
class Person :
hair = 'black'
def __init__(self,firstname = 'charlie',age = 8):
se...
原创
2019-09-29 16:21:39 ·
6743 阅读 ·
4 评论