如何使用 python 将扩展 ASCII 字符(例如:“æ、ö 或 ç”)转换为非扩展 ASCII 字符(a、o、c)?它的工作方式应该是,如果它以 "A, Æ ,Ä" 作为输入,它会为所有这些返回 A。
问问题
1409 次
1 回答
6
Unidecode可能对您有用。
Python 3.2.3 (default, Jun 8 2012, 05:36:09)
[GCC 4.7.0 20120507 (Red Hat 4.7.0-5)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from unidecode import unidecode
>>> unidecode("æ, ö or ç")
'ae, o or c'
于 2013-03-28T23:15:01.947 回答