真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Python中如何使用中文字符

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

從策劃到設(shè)計制作,每一步都追求做到細膩,制作可持續(xù)發(fā)展的企業(yè)網(wǎng)站。為客戶提供網(wǎng)站制作、做網(wǎng)站、網(wǎng)站策劃、網(wǎng)頁設(shè)計、申請域名、網(wǎng)站空間、網(wǎng)絡(luò)營銷、VI設(shè)計、 網(wǎng)站改版、漏洞修補等服務(wù)。為客戶提供更好的一站式互聯(lián)網(wǎng)解決方案,以客戶的口碑塑造優(yōu)易品牌,攜手廣大客戶,共同發(fā)展進步。

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中文字符中默認編碼設(shè)置:

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

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


網(wǎng)站標(biāo)題:Python中如何使用中文字符
網(wǎng)頁網(wǎng)址:http://weahome.cn/article/jedioi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部