gpt4 book ai didi

python - 如何将 unicode 数字转换为整数?

转载 作者:太空狗 更新时间:2023-10-29 22:21:23 24 4
gpt4 key购买 nike

Arabic and Chinese have their own glyphs for digits. int works correctly with all the different ways to write numbers.

我无法重现该行为(python 3.5.0)

>>> from unicodedata import name
>>> name('𐹤')
'RUMI DIGIT FIVE'
>>> int('𐹤')
ValueError: invalid literal for int() with base 10: '𐹤'
>>> int('五') # chinese/japanese number five
ValueError: invalid literal for int() with base 10: '五'

我做错了什么吗?或者声明是否完全不正确(source)。

最佳答案

int 不接受所有数字的写法。它理解用于位置数字系统的数字字符,但不理解 Rumi也不Chinese数字是位置的。 '五五' 和鲁米数字 5 的两个副本都不代表 55,因此 int 不接受它们。

关于python - 如何将 unicode 数字转换为整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39710365/

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