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) |
- 这是关于用python打印unicode的Squillion其他问题的副本。读它们。
尝试