有没有办法在 Python 中将表示 Unicode 代码点的 int 转换为 Unicode 字符(字符串),其中相同的转换代码可以在 Python3+ 和 Python 2.7 中运行。
结果字符串是一个 Unicode 字符串,可以是 Py3 中的纯字符串,也可以是from __future__ import unicode_literals
Pre Py3 中使用 ' ' 的字符串。
所以我们想要:
i = 404
c = chr_or_unichr (i) # this code is identical for different Python versions
>>> c
'Ɣ'