如何在我的python3.4中获取unicode版本?

时间:2015-01-19 11:40:27

标签: python python-3.x unicode

根据http://www.unicode.org/versions/,最新的unicode版本是Unicode 7。

哪个Unicode版本是python3.4构建的?如何获得它?

1 个答案:

答案 0 :(得分:3)

来自unicodedata module documentation for Python 3.4

  

此数据库中包含的数据是从UCD版本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。