lsh 发表于 2019-2-17 09:53:25

NameError: name 'unicode' is not defined

There is no such name in Python 3, no. You are trying to run Python 2 code in Python 3. In Python 3, unicode has been renamed to str.

简单来说就是: Python2 的unicode 函数在 Python3 中被命名为 str。在 Python3 中使用 ·str 来代替 Python2 中的 unicode.
---------------------


Happy清子 发表于 2019-2-17 11:30:20

这个错误
值得注意

Happy清子 发表于 2019-2-17 11:30:47

python不同版本
的兼容性
是个大问题
页: [1]
查看完整版本: NameError: name 'unicode' is not defined