Home  >  Q&A  >  body text

python - str()和直接调用__str__用法有不同吗?

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

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

天蓬老师天蓬老师2741 days ago708

reply all(1)I'll reply

  • 大家讲道理

    大家讲道理2017-04-18 10:28:23

    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.

    reply
    0
  • Cancelreply