gpt4 book ai didi

Python isalpha() 和 scandics

转载 作者:行者123 更新时间:2023-11-28 19:51:31 26 4
gpt4 key购买 nike

有没有办法让 python isalpha 方法理解 scandics?我尝试了以下方法:

>>> import locale
>>> locale.getlocale()
(None, None)
>>> 'thisistext'.isalpha()
True
>>> 'äöå'.isalpha()
False
>>> locale.setlocale(locale.LC_ALL,"")
'Finnish_Finland.1252'
>>> locale.getlocale()
('Finnish_Finland', '1252')
>>> 'äöå'.isalpha()
False

最佳答案

如果适合您的情况,最简单的方法是使用 unicode 字符串。只需在字符串前加上 'u' 符号即可:

>>> u'привіт'.isalpha()
True

或者将这一行作为文件的第一行:

# -*- coding: utf-8 -*-

关于Python isalpha() 和 scandics,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4286637/

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