哪个python软件包可以将希腊字母转换为ASCII等效文件?

时间:2019-05-10 14:12:42

标签: python python-unicode

unidecodeμ转换为m。但我想改为mu。是否有可以做到这一点的python包(也适用于其他希腊字母)?

>>> import unidecode
>>> unidecode.unidecode(u'μ')
'm'

1 个答案:

答案 0 :(得分:2)

我想它有效™:

import unicodedata

def greek_to_name(symbol):
    greek, size, letter, what = unicodedata.name(symbol).split()
    assert greek, letter == ("GREEK", "LETTER")
    return what.lower() if size == "SMALL" else what.title()