gpt4 book ai didi

python - 如何确定 Python 是使用 UCS-2 还是 UCS-4 编译的?

转载 作者:IT老高 更新时间:2023-10-28 21:44:13 25 4
gpt4 key购买 nike

正如标题所说的那样。

$ ./configure --help | grep -i ucs
--enable-unicode[=ucs[24]]

查了官方文档,发现是这样的:

sys.maxunicode: An integer giving the largest supported code point for a Unicode character. The value of this depends on the configuration option that specifies whether Unicode characters are stored as UCS-2 or UCS-4.

这里不清楚的是 - 哪些值对应于 UCS-2 和 UCS-4。

该代码预计可在 Python 2.6+ 上运行。

最佳答案

使用 --enable-unicode=ucs4 构建时:

>>> import sys
>>> print sys.maxunicode
1114111

使用 --enable-unicode=ucs2 构建时:

>>> import sys
>>> print sys.maxunicode
65535

关于python - 如何确定 Python 是使用 UCS-2 还是 UCS-4 编译的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1446347/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com