遇到很奇葩的问题,请看贴图:
为什么str(cut)会报错? 但cut.__str__()不会?
欢迎选择我的课程,让我们一起见证您的进步~~
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.
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.