python的list要列印中文字元
在python2.X下的的中文處理有不少問題,
listnine = [‘梨’, ‘橘子’, ‘蘋果’, ‘香蕉’]
print ‘listnine list: %s’ % listnine
結果會是:
[’\xe6\xa2\xa8’, ‘\xe6\xa9\x98\xe5\xad\x90’, ‘\xe8\x8b\xb9\xe6\x9e\x9c’, ‘\xe9\xa6\x99\xe8\x95\x89’]
但是我們想要輸出的也是中文,而不是這一些東東,下面列出兩種方法:
第一種:
使用decode(‘string_escape’)
listnine = [‘梨’, ‘橘子’, ‘蘋果’, ‘香蕉’]
print ‘listnine list: %s’ % str(listnine).decode(‘string_escape’)
這樣就按原來的樣子出來了
第二種:
使用uniout來完成
首先下載安裝它:地址:https://pypi.python.org/packages/source/u/uniout/uniout-0.3.7.tar.gz
然後會解壓出一個目錄:uniout-0.3.7
進入到這個目錄:然後python setup.py install
在你的python檔案前加條:import uniout 就可以了
listnine = [‘梨’, ‘橘子’, ‘蘋果’, ‘香蕉’]
print ‘listnine list: %s’ % listnine
依然這樣寫,出來就正常了_
相關文章
- Python 列印中文字元Python字元
- python怎麼列印listPython
- python 列印可見字元Python字元
- Python拆分列中文和 字元Python字元
- java列印!到~之間的字元Java字元
- Python 可列印字元、UTF8相關(qbit)Python字元
- 找出非列印字元方法字元
- python實現中文字元繁體和簡體中文轉換Python字元
- 列印樣式CSS的技巧和要點CSS
- Python List 列表list()方法Python
- 【python】list 的用法Python
- Python List 列表list()方法分享Python
- python listPython
- 中文字元轉為HTML字元實體字元HTML
- pycharm不能列印中文怎麼辦PyCharm
- iOS之LLDB列印顯示中文iOSLLDB
- 填一填python2.x 中文字元編碼的坑Python字元
- impdp遇到char字元含中文的問題字元
- 中文字元亂碼的解決字元
- python列印菱形Python
- 前端列印console.log 字元畫前端字元
- python列表(List)Python
- Python 列表(List)Python
- Python list(列表)Python
- python list 排序Python排序
- Python列印類的屬性Python
- Python List 列表的處理Python
- python的list如何去重Python
- Python中list的遍歷Python
- python 計算list的方差Python
- 中文自定義字型列印解決!(轉)自定義字型
- Oracle 中文字元及中文亂碼判斷Oracle字元
- 為什麼要寫成List a = new ArrayList()
- python 列印 ASCII表PythonASCII
- [Python] list vs tupplePython
- python如何拆分listPython
- python - function list generatorPythonFunction
- python--列表listPython