我有一个像这样的对象字典
{'name1':oject_instance_1,'name2':oject_instance_2,'name3':oject_instance_3}
在我的对象类定义中,我已经定义了__str__() method
和__repr__()
方法,如下所示:
def __str__(self):
return('{0} pathway containing {1} genes, with a total sequence length of {2}'.format(self.id, len(self.genes), self.length))
def __repr(self):
return self.__str__
如果重要的是self.id是一个字符串,self.genes是一个列表,self.length是一个int
问题是,当我打印这本字典时,我得到了:
{'pid1003': <Pathway.Pathway instance at 0x10169d680>, 'pid1002': <Pathway.Pathway instance at 0x10169d638>, 'pid1001': <Pathway.Pathway instance at 0x10169d5f0>}
但是像
这样的循环打印for v in dict.values():
print(v)
工作正常。
任何想法为什么? 谢谢!
答案 0 :(得分:6)
也许您应该实施__repr__
,而不是__repr
。
修改强>
__repr__
应该返回一个String,而不是一个函数。因此,如评论中所述,请返回str(self)
。