如下的内容段是关于python 计算字符串长度,一个中文算两个字符的内容,应该能对各朋友有用途。
value=u'脚本12'
length = len(value)
utf8_length = len(value.encode('utf-8'))
length = (utf8_length - length)/2 + length
print(length)
结果输出:6
如下的内容段是关于python 计算字符串长度,一个中文算两个字符的内容,应该能对各朋友有用途。
value=u'脚本12'
length = len(value)
utf8_length = len(value.encode('utf-8'))
length = (utf8_length - length)/2 + length
print(length)
结果输出:6