python2.7 中文字符正常使用步骤
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/guoguicheng1314/article/details/79128124
python2版本需要使用中文时会出现各种编码问题,网上各种解决思路也是眼花缭乱,根据我亲自测试只要文件中有了这下面4个步骤,使用中文就和使用英文字符一样了,下面步骤缺一不可。
1、文件保存格式必须为utf-8格式
2、代码文件内指明使用utf-8编码
3、设置python默认字符编码为utf-8
4、中文字符串变量强制进行utf-8编码
#coding=utf-8
import sys,io
reload(sys)
sys.setdefaultencoding(‘utf-8’)
str=unicode(‘你我他她’,encoding=‘utf-8’)
至此可以正常使用中文进行操作
print “find=”,str.find(‘她’) #输出3
print “len=”,len(str) #输出4
print str[2] #输出 ‘他’
作者:_________MAN
来源:CSDN
原文:https://blog.csdn.net/guoguicheng1314/article/details/79128124?utm_source=copy
版权声明:本文为博主原创文章,转载请附上博文链接!