Unicodedata 在终端中有效,但在 .py 中无效
Unicodedata works in terminal but not on .py
我正在尝试去除西班牙语单词中的重音。如果我这样做
import unicodedata
name="Tecnología"
uname=unicode(name, "utf-8")
nameclean=unicodedata.normalize(u"NFKD", uname).encode("ascii", erros="ignore")
在 python 和 returns "Tecnologia" 的终端版本中有效,但在脚本 .py
中无效。我不明白。我收到的错误是
TypeError: decoding Unicode is not supported
专门针对命令的第一部分unicodedata.normalize(u"NFKD", uname)
。我已经确定我对这两种情况都使用了相同的句子,并且我拆分了命令以确切知道问题出在哪里。
我是运行python2.7.5和unicodedata2 12.0.0(pip install
没找到unicodedata
,还有unicode
和Unicode
已安装)
编辑:
这是终端的样子。一切正常,但在 .py
中使用时 returns 我提到的错误。
当要求 Python 将 unicode
实例解码为 unicode 时,会引发报告的异常。
>>> name = u"Tecnología"
>>> uname = unicode(name, "utf-8")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: decoding Unicode is not supported
我正在尝试去除西班牙语单词中的重音。如果我这样做
import unicodedata
name="Tecnología"
uname=unicode(name, "utf-8")
nameclean=unicodedata.normalize(u"NFKD", uname).encode("ascii", erros="ignore")
在 python 和 returns "Tecnologia" 的终端版本中有效,但在脚本 .py
中无效。我不明白。我收到的错误是
TypeError: decoding Unicode is not supported
专门针对命令的第一部分unicodedata.normalize(u"NFKD", uname)
。我已经确定我对这两种情况都使用了相同的句子,并且我拆分了命令以确切知道问题出在哪里。
我是运行python2.7.5和unicodedata2 12.0.0(pip install
没找到unicodedata
,还有unicode
和Unicode
已安装)
编辑:
这是终端的样子。一切正常,但在 .py
中使用时 returns 我提到的错误。
当要求 Python 将 unicode
实例解码为 unicode 时,会引发报告的异常。
>>> name = u"Tecnología"
>>> uname = unicode(name, "utf-8")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: decoding Unicode is not supported