NameError:全局名称“ unicode”未定义-在Python 3中

NameError:全局名称“ unicode”未定义-在Python 3中,第1张

NameError:全局名称“ unicode”未定义-在Python 3中

Python 3将

unipre
类型重命名为
str
,旧
str
类型已替换为
bytes

if isinstance(unipre_or_str, str):    text = unipre_or_str    depred = Falseelse:    text = unipre_or_str.depre(encoding)    depred = True

您可能需要阅读Python 3 porting
HOWTO
以获得更多此类详细信息。Lennart
Regebro的Porting to Python 3:深入指南,可免费在线获得。

最后但并非最不重要的一点是,您可以尝试使用该

2to3
工具查看如何为您转换代码。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5623394.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存