Python 的 List 要印出 中文 編碼

Python 的 List 如果有中文的話, 會印出 \xe4\xb8… 等等的編碼, 要如何印出中文呢(如下範例)? (Debug 方便查看)

View Raw Code ?
  1. >>> a = ['中文', 'ab']
  2. >>> print a
  3. ['\xe4\xb8\xad\xe6\x96\x87', 'ab']

 

Python 的 List 要印出 中文 編碼

下述列出幾種作法:

使用 decode(‘string_escape’) 來達成

View Raw Code ?
  1. >>> a = ['中文', 'ab']
  2. >>> print a
  3. ['\xe4\xb8\xad\xe6\x96\x87', 'ab']
  4. >>> print str(a).decode('string_escape')
  5. ['中文', 'ab']

使用 uniout 來達成

  • 安裝: sudo pip install uniout # Source code:https://github.com/moskytw/uniout
View Raw Code ?
  1. >>> a = ['中文', 'ab']
  2. >>> import uniout
  3. >>> print a
  4. ['中文', 'ab']

直接取用 _uniout 來達成

  • 從上述 uniout Project 直接取用 _uniout.py
View Raw Code ?
  1. >>> a = ['中文', 'ab']
  2. >>> import _uniout
  3. >>> print _uniout.unescape(str(a), 'utf8')
  4. ['中文', 'ab']

相關網頁

  • encoding -- Python “string_escape" vs “unicode_escape" -- Stack Overflow

你可能感兴趣的:(Python 的 List 要印出 中文 編碼)