Python 中文處理 UTF-8

來源:互聯網
上載者:User

#python處理中文三種方式:
#'#coding=utf-8'使用utf-8編碼#coding=utf-8
# 假設name為str類型
#print name.decode('utf-8')
#print name.encode('utf-8')
#http://farmdev.com/talks/unicode/

#

在使用Python的過程中經常會出現一些編碼問題:

比如:


SyntaxError: Non-ASCII character '\xe5' in file  

解決方案為:在.py代碼第一句加上如下內容即可:

#coding=utf-8或者#coding:utf-8或者#
-*- coding:utf-8 -*-"

以上表示:這是用來說明你的Python來源程式檔案用使用的編碼。預設情況下你的程式需要使用ascii碼來寫,但如果在其中寫中文的話,python解譯器一般會報錯,但如果加上你所用的檔案編碼,python就會自動處理不再報錯。


如果列印的內容出現u'\u54c8\u54c8類型問題
 可以試試如下方法:theStr.encode('utf-8')或者heStr.decode('utf-8')或者如下

import sys

reload(sys)

sys.setdefaultencoding('gbk')

當然如果使用IDE的話,別忘了設定UTF-8編碼之類的


關於編碼問題,還可參考這篇文章,國外牛人寫的,而且挺有意思的:http://farmdev.com/talks/unicode/

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.