溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Python中如何使用中文字符

發(fā)布時間:2021-07-10 15:36:57 來源:億速云 閱讀:171 作者:Leah 欄目:編程語言

這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)Python中如何使用中文字符,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

Python中文字符相關(guān)操作代碼示例:

#!/usr/bin/python  #-*- coding: utf-8 -*-  s = "中國" ss = u"中國" print s, type(s), len(s)  print ss, type(ss), len(ss)  print '-' * 40  print repr(s)  print repr(ss)  print '-' * 40  ss1 = s.decode('utf-8')  print s1,len(s1),type(s1)  print '-' * 40  ss2 = s.decode('utf-8').encode('gbk')  print s2  print type(s2)  print len(s2)  print '-' * 40  s3 = ss.encode('gbk')  print s3  print type(s3)  print len(s3)

執(zhí)行結(jié)果如下:

中國 < type 'str'> 6  中國 < type 'unicode'> 2  ----------------------------------------  '\xe4\xb8\xad\xe5\x9b\xbd'  u'\u4e2d\u56fd'  ----------------------------------------  中國 2 < type 'unicode'> ----------------------------------------  ?й  < type 'str'> 4  ----------------------------------------  ?й  < type 'str'> 4

補充:

查看Python中文字符中默認(rèn)編碼設(shè)置:

>>> import sys  >>> sys.getdefaultencoding()  'ascii'

上述就是小編為大家分享的Python中如何使用中文字符了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI