您的类没有__init__()
,因此在实例化时,该属性atoms
不存在。你必须这样做C.setdata('something')
才可C.atoms
用。
>>> C = Residues()
>>> C.atoms.append('thing')
Traceback (most recent call last):
File "<pyshell#84>", line 1, in <module>
B.atoms.append('thing')
AttributeError: Residues instance has no attribute 'atoms'
>>> C.setdata('something')
>>> C.atoms.append('thing') # now it works
>>>
与 Java 等语言不同,您在编译时就知道对象将具有哪些属性/成员变量,而在 Python 中,您可以在运行时动态添加属性。这也意味着同一类的实例可以具有不同的属性。
为了确保你总是有(除非你把它弄乱了,那是你自己的错)一个atoms
列表,你可以添加一个构造函数:
def __init__(self):
self.atoms = []