python获取中文字符串长度的方法

如下所示:

print len('哈哈'.decode('utf-8')) #unicode格式
print len('哈哈') #utf-8格式

相关推荐