Questions tagged «repr»


9
访问对象存储器地址
当您object.__repr__()在Python中调用该方法时,您会得到类似以下的信息: <__main__.Test object at 0x2aba1c0cf890> 如果您过载了__repr__(),还有什么方法可以保留该内存地址,然后调用super(Class, obj).__repr__()并重新分配它呢?

5
了解Python中的repr()函数
repr():对象的可评估字符串表示形式(可以“ eval()”表示它,这是一个评估为Python对象的字符串表示形式) 换一种说法: >>> x = 'foo' >>> repr(x) "'foo'" 问题: 为什么我得到双引号repr(x)?(这样做的时候我不懂str(x)) 为什么我会'foo'当我做eval("'foo'"),而不是X也就是对象?
151 python  repr 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.