python - str()和直接调用__str__用法有不同吗?
天蓬老师
天蓬老师 2017-04-18 10:26:23
0
1
703

遇到很奇葩的问题,请看贴图:

为什么str(cut)会报错? 但cut.__str__()不会?

天蓬老师
天蓬老师

欢迎选择我的课程,让我们一起见证您的进步~~

reply all(1)
大家讲道理

You should indicate that this is Python 2.

str is actually a class. Since it is a class, its result should naturally return an instance of type str. So it will try to convert the result of your cut.__str__() (unicode type) into str. An error was reported at this step.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!