python学习——编码
2020-11-25 00:23
标签:python utf-8 乱码 编码 unicode
python学习——编码 标签:python utf-8 乱码 编码 unicode 原文地址:http://blog.csdn.net/mengfanbo123/article/details/24633435
#coding:utf-8
ch = ‘在中使用中文需要注意字符编码问题‘
print ch
print ch.decode(‘utf-8‘).encode(‘cp936‘)