Python 中文字符串截取

 

英文截取:
>>> s = ‘abce’
>>> s[0:3]
‘abc’

中文截取:
#-*- coding:utf8 -*-
s = u’中文截取’
s.decode(‘utf8’)[0:3].encode(‘utf8’)
# 结果u’中文截取

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注