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