python解码函数_解码函数尝试编码Python

这不是解码失败.这是因为您正在尝试将结果显示到控制台.使用print时,它使用默认编码ASCII编码字符串.不要使用打印,它应该工作.

>>> a=u'really long string containing \\u20ac and some other text'

>>> type(a)

>>> a.decode('unicode-escape')

u'really long string containing \u20ac and some other text'

>>> print a.decode('unicode-escape')

Traceback (most recent call last):

File "", line 1, in

UnicodeEncodeError: 'ascii' codec can't encode character u'\u20ac' in position 30: ordinal not in range(128)

我建议使用IDLE或其他可以输出unicode的解释器,那么你就不会遇到这个问题.

更新:请注意,这与少一个反斜杠的情况不同,它在解码期间失败,但具有相同的错误消息:

>>> a=u'really long string containing \u20ac and some other text'

>>> type(a)

>>> a.decode('unicode-escape')

Traceback (most recent call last):

File "", line 1, in

UnicodeEncodeError: 'ascii' codec can't encode character u'\u20ac' in position 30: ordinal not in range(128)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值