如何在我的 python3.4 中获取 unicode 版本?
how can get the unicode version in my python3.4?
最新的 unicode 版本是 Unicode 7,根据 http://www.unicode.org/versions/。
python3.4 是基于哪个 Unicode 版本构建的?如何获得?
来自unicodedata
module documentation for Python 3.4:
The data contained in this database is compiled from the UCD version 6.3.0.
unicodedata.unidata_version
value 告诉您当前 Python 安装使用的版本; Python 3.4 上的演示:
>>> import unicodedata
>>> unicodedata.unidata_version
'6.3.0'
Python 3.5(第一个 alpha due out in February 2015)将使用 Unicode 7.0.0。
最新的 unicode 版本是 Unicode 7,根据 http://www.unicode.org/versions/。
python3.4 是基于哪个 Unicode 版本构建的?如何获得?
来自unicodedata
module documentation for Python 3.4:
The data contained in this database is compiled from the UCD version 6.3.0.
unicodedata.unidata_version
value 告诉您当前 Python 安装使用的版本; Python 3.4 上的演示:
>>> import unicodedata
>>> unicodedata.unidata_version
'6.3.0'
Python 3.5(第一个 alpha due out in February 2015)将使用 Unicode 7.0.0。