python 學習~unicode 編碼

來源:互聯網
上載者:User

如果代碼檔案需要制定編碼格式如utf-8:

1.要在檔案開始時寫如下注釋

# coding=utf-8 

2.或則 使用以下代碼

import sys

reload sys

sys.setdefaultencoding('utf-8')

說明:unicode支援不同的編碼方式,最著名的的是utf-8.  ASCII字元 的utf-8 編碼 與ASCII編碼完全一致。

            此外,在程式中不要使用string模組,使用unicode()和unichar()函數代替str()和chr() 函數  

一般對檔案操作、socket操作,需要把內容轉換為utf-8,處理完後再轉換回來。

如 以utf-8編碼格式 寫入檔案,  讀檔案後 可進行解碼

 

# coding=utf-8def  toUTF_8(s):    if type(s).__name__=='unicode':        return s.encode('utf-8')    else:        return s    def toUnicode(s):    if type(s).__name__!='unicode':        return s.decode('utf-8')    else:        return s    CODEC = 'utf-8'FILE = 'unicode.txt'hello_out = u"世界\n"bytes_out = toUTF_8(hello_out) f = open(FILE, "w")f.write(bytes_out)f.close()f = open(FILE, "r")bytes_in = f.read()f.close()hello_in = toUnicode(bytes_in)print hello_in

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.