python 计算字符串长度,一个中文算两个字符的代码

如下的内容段是关于python 计算字符串长度,一个中文算两个字符的内容,应该能对各朋友有用途。

value=u'脚本12'

length = len(value)

utf8_length = len(value.encode('utf-8'))

length = (utf8_length - length)/2 + length

print(length)




结果输出:6

你可能感兴趣的:(python 计算字符串长度,一个中文算两个字符的代码)