字符编码 python中如何避免中文是乱码 #!/usr/bin/env python # coding=utf-8 a = "我是中国人" print a.decode('utf-8').encode('gbk') 输出结果: