标签: python python-2.7
我需要从字符串“ test?àâ”中获取字符。我的输出包含带重音符的“。”。我的python代码在下面给出。
# -*- coding: utf-8 -*- import unicodedata s = 'test?àâ' for c in s: print c
输出:
t e s t ? � � � �