码迷,mamicode.com
首页 > 编程语言 > 详细

python utf-8 转码问题

时间:2020-11-25 12:06:28      阅读:10      评论:0      收藏:0      [点我收藏+]

标签:语句   file   error:   tin   bsp   syntax   python3   line   err   

print str(‘\345\207\235\346\266\265\346\237\217‘).decode(‘string_escape‘)
凝涵柏

但该语句在python3中无法运行

File "script.py", line 3
print str(‘\345\207\235\346\266\265\346\237\217‘).decode(‘string_escape‘)
^
SyntaxError: invalid syntax

Exited with error status 1

解决办法:

print (str(‘\345\207\235\346\266\265\346\237\217‘).encode(‘latin1‘).decode(‘unicode-escape‘).encode(‘latin1‘).decode(‘utf-8‘))

凝涵柏

 

python utf-8 转码问题

标签:语句   file   error:   tin   bsp   syntax   python3   line   err   

原文地址:https://www.cnblogs.com/answer727/p/14013455.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!