1. 程式人生 > >python2.7的中文問題解決

python2.7的中文問題解決

Python2.7預設使用的字符集是ASCII,並不支援中文字元的顯示與處理,因些如果要在Python中處理中文就需要進行一些額外的處理。

一、在開頭處宣告Python使用UTF-8編碼顯示字元

#/usr/bin/env python
# -*- coding: UTF-8 -*-

但這樣做,只是讓你的程式在執行的過程中顯示中文,如果你要將中文字元儲存在檔案中,或者寫入到資料庫中,這樣的設定是不能滿足你的需要。

二、設定系統預設字元編碼

import sys
reload(sys)
sys.setdefaultencoding('utf-8')

也許是Python的bug在import sys

後必須再一次reload(sys),下面去設定預設字元編碼的語句才能生效。

三、遇到需要處理中文的地方,就隨時進行UTF-8編碼

經常會遇到的是,進行了第一步和第二步設定後,還是無法正常顯示和處理中文字元,這時也只能隨用隨編碼了。 假設待處理字串為string 使用下面的語句進行utf-8編碼:

string.encode('utf-8')

使用下面的語句進行utf-8解碼:

unicode(string, encoding='utf-8')

如果為了方便可以將上面二個語句寫成方法隨時呼叫:

def encode_utf8(string):
    return string.encode('utf-8')

def decode_utf8(string)
    return unicode(string, encoding='utf-8')

--------------------- 本文來自 cmzsteven 的CSDN 部落格 ,全文地址請點選:https://blog.csdn.net/cmzsteven/article/details/63685384?utm_source=copy