码迷,mamicode.com
首页 > 编程语言 > 详细

python中文utf8编码后是占3个字符,unicode汉字为2字节

时间:2015-08-17 00:44:47      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:

一个中文utf8编码后是占3个字符,所以求长度的函数可以这样写
        def str_len(str):  
            try:  
                row_l=len(str)  
                utf8_l=len(str.encode(utf-8))  
                return (utf8_l-row_l)/2+row_l  
            except:  
                return None  
            return None  
unicode中汉字为两字节, utf-8中汉字为三字节

 https://en.wikipedia.org/wiki/Unicode

https://en.wikipedia.org/wiki/UTF-8

python中文utf8编码后是占3个字符,unicode汉字为2字节

标签:

原文地址:http://www.cnblogs.com/x113/p/4735196.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!