如何在python中从字符串中读取重音字符

时间:2019-07-11 07:43:48

标签: python python-2.7

我需要从字符串“ test?àâ”中获取字符。我的输出包含带重音符的“。”。我的python代码在下面给出。

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

import unicodedata
s = 'test?àâ'

for c in s:
    print c

输出:

t
e
s
t
?
�
�
�
�

0 个答案:

没有答案