数据转换基本模式: 代码: msg = "我爱爬虫" print(msg) print(msg.encode(encoding="utf-8")) print(msg.encode(encoding="utf-8").decode(encoding="utf-8"))#把string类型转换成byte类型,再转换成string类型 运行结果: 来源:https://www.cnblogs.com/qjhh/p/12328109.html 标签 大数据 string类 数据转换 python