标签:put har class output string ring decode str span
\x*为中文字符:使用decode对其进行编码,再输出即可
1 s = ‘你好‘ 2 print s 3 # output:你好 4 5 s = [‘你好‘] 6 print s 7 # output:[‘\xe4\xbd\xa0\xe5\xa5\xbd‘] 8 9 s = [‘你好‘] 10 print str(s[0]).decode(‘string_escape‘) 11 # output:你好
标签:put har class output string ring decode str span
原文地址:http://www.cnblogs.com/sunruina2/p/7127415.html