unidecode
将μ
转换为m
。但我想改为mu
。是否有可以做到这一点的python包(也适用于其他希腊字母)?
>>> import unidecode
>>> unidecode.unidecode(u'μ')
'm'
答案 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()