pythonPython 中文字符串截取 12月 10, 2018 - by 欧阳逍遥 - Leave a Comment 英文截取: >>> s = ‘abce’ >>> s[0:3] ‘abc’ 中文截取: #-*- coding:utf8 -*- s = u’中文截取’ s.decode(‘utf8’)[0:3].encode(‘utf8’) # 结果u’中文截取