关于unicode:python格式并显示非ASCII字符

python format and display non ASCII characters

本问题已经有最佳答案,请猛点这里访问。

我正在尝试打印符号,但似乎无法使用format()方法进行打印。我正在尝试以下操作:

1
2
curr_prefix = u"\xA3"
print"{}".format(curr_prefix)

但我得到以下错误:

1
UnicodeEncodeError: 'ascii' codec can't encode character u'\xa3' in position 0: ordinal not in range(128)


尝试