python中文字符串长度函数示例

发布时间:2020-09-19编辑:脚本学堂
python计算中文字符串长度的小函数,python获取字符串长度的方法,一起来了解下。

python中处理字符串长度问题,一个中文utf8编码后是占3个字符,分享一个求长度的函数。

例子:
 

复制代码 代码示例:
#!/usr/bin/env python
#
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