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

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

作者: 地主天敌 | 来源:发表于2019-04-05 09:20 被阅读0次

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

    value=u'脚本12'

    length = len(value)

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

    length = (utf8_length - length)/2 + length

    print(length)

    结果输出:6

    相关文章

      网友评论

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

          本文链接:https://www.haomeiwen.com/subject/akrhiqtx.html