python:print含有中文的list

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python:print含有中文的list相关的知识,希望对你有一定的参考价值。

Python 的 List 如果有中文的话, 会印出 \xe4\xb8... 等等的编码(如下所示), 要如何印出中文呢? 

>>> a = [‘中文‘, ‘ab‘]
>>> print a
[‘\xe4\xb8\xad\xe6\x96\x87‘, ‘ab‘]


下述列出几种作法:
1.使用 decode(‘string_escape‘) 来达成


>>> a = [‘中文‘, ‘ab‘]
>>> print a
[‘\xe4\xb8\xad\xe6\x96\x87‘, ‘ab‘]
>>> print str(a).decode(‘string_escape‘)
[‘中文‘, ‘ab‘]


2.使用 uniout 来达成


安装: sudo pip install uniout # Source code: https://github.com/moskytw/uniout
>>> a = [‘中文‘, ‘ab‘]
>>> import uniout
>>> print a
[‘中文‘, ‘ab‘]




3.直接取用 _uniout 


从上述 uniout Project 直接取用 _uniout.py


>>> a = [‘中文‘, ‘ab‘]
>>> import _uniout
>>> print _uniout.unescape(str(a), ‘utf8‘)
[‘中文‘, ‘ab‘]

以上是关于python:print含有中文的list的主要内容,如果未能解决你的问题,请参考以下文章

python 判断字符串中是不是含有英文

python第十六天课

Python__01--print()

python 使用xpath解析含有命名空间(xmlns)的xml

python-20-生成器又是什么东西?

Python 判断字符串是否含有指定字符or字符串