标签: python unicode emoji python-unicode
我有以下文字: / 据我了解,这是英语表情符号,所以我想使其: 妻子/妈妈 因此,我可以使用无法识别此文本的lang_detector。
谢谢。
答案 0 :(得分:2)
您可以从python使用unicodedata模块:
unicodedata
import unicodedata print(unicodedata.normalize('NFKD', ' / '))
输出为:
wife / mama
用于unicodedata的官方documentation。