欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

python包含中文字符串长度

程序员文章站 2022-05-14 10:18:05
...
python包含中文字符串长度

一个中文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