ascii#ascii,对象类中找__repr__,获取其返回值
Posted 失落的黎明
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ascii#ascii,对象类中找__repr__,获取其返回值相关的知识,希望对你有一定的参考价值。
1 #!/usr/bin/env python 2 #ascii,对象类中找__repr__,获取其返回值 3 class Foo : 4 def __repr__(self): 5 return "hello" 6 7 obj = Foo() 8 r = ascii(obj) 9 print(r )
以上是关于ascii#ascii,对象类中找__repr__,获取其返回值的主要内容,如果未能解决你的问题,请参考以下文章