python包含中文字符串长度 2021-11-01 14:12:39 浏览数 (1) 一个中文utf8编码后是占3个字符,所以求长度的函数可以这样写代码语言:javascript复制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 utf8 编码 函数 0 人点赞 上一篇:分享雷军22年前编写的代码