164

我正在尝试使用一个名为 bidi 的 Python 包。在这个包(algorithm.py)的一个模块中,有一些行给了我错误,尽管它是包的一部分。

以下是这些行:

# utf-8 ? we need unicode
if isinstance(unicode_or_str, unicode):
    text = unicode_or_str
    decoded = False
else:
    text = unicode_or_str.decode(encoding)
    decoded = True

这是错误消息:

Traceback (most recent call last):
  File "<pyshell#25>", line 1, in <module>
    bidi_text = get_display(reshaped_text)
  File "C:\Python33\lib\site-packages\python_bidi-0.3.4-py3.3.egg\bidi\algorithm.py",   line 602, in get_display
    if isinstance(unicode_or_str, unicode):
NameError: global name 'unicode' is not defined

我应该如何重写这部分代码以便它在 Python3 中工作?另外,如果有人在 Python 3 中使用过 bidi 包,请告诉我他们是否发现了类似的问题。我感谢您的帮助。

4

7 回答 7

265

Python 3 将该unicode类型重命名为str,旧str类型已替换为bytes.

if isinstance(unicode_or_str, str):
    text = unicode_or_str
    decoded = False
else:
    text = unicode_or_str.decode(encoding)
    decoded = True

您可能需要阅读Python 3 移植 HOWTO以了解更多此类详细信息。还有 Lennart Regebro 的Porting to Python 3: An in-depth guide,免费在线。

最后但同样重要的是,您可以尝试使用该2to3工具来查看它如何为您翻译代码。

于 2013-11-09T14:52:17.587 回答
47

如果您需要像我一样让脚本继续在 python2 和 3 上工作,这可能会对某人有所帮助

import sys
if sys.version_info[0] >= 3:
    unicode = str

然后可以做例如

foo = unicode.lower(foo)
于 2018-11-13T17:36:22.163 回答
24

您可以使用这六个库同时支持 Python 2 和 3:

import six
if isinstance(value, six.string_types):
    handle_string(value)
于 2017-07-12T20:22:38.747 回答
4

One can replace unicode with u''.__class__ to handle the missing unicode class in Python 3. For both Python 2 and 3, you can use the construct

isinstance(unicode_or_str, u''.__class__)

or

type(unicode_or_str) == type(u'')

Depending on your further processing, consider the different outcome:

Python 3

>>> isinstance(u'text', u''.__class__)
True
>>> isinstance('text', u''.__class__)
True

Python 2

>>> isinstance(u'text', u''.__class__)
True
>>> isinstance('text', u''.__class__)
False
于 2020-11-25T10:55:47.013 回答
1

希望您使用的是 Python 3 ,默认情况下 Str 是 unicode,所以请Unicode用 String函数替换Str函数。

if isinstance(unicode_or_str, str):    ##Replaces with str
    text = unicode_or_str
    decoded = False
于 2018-03-27T09:54:10.773 回答
0

如果使用 3rd-party 库unicode并且您无法更改其源代码,则可以使用以下猴子补丁str而不是unicode在模块中使用:

import <module>
<module>.unicode = str
于 2021-11-07T21:37:30.480 回答
0

你可以在 python2 或 python3 中使用它

type(value).__name__ == 'unicode':
于 2022-02-24T02:24:35.767 回答