会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
观无明
程序员老兵,自由职业者
博客园
首页
订阅
管理
2010年5月14日
python 的字符编码和中文处理
摘要: 字符串 python有两种字符串 byteString = "hello world! (in my default locale)" unicodeString = u"hello Unicode world!" 相互转换 1 s = "hello normal string" 2 u = unicode( s, "utf-8" ) 3 backToBytes = u.encode( "ut...
阅读全文
posted @ 2010-05-14 10:03 观无明
阅读(5645)
评论(0)
推荐(1)
编辑