Python报错:‘latin-1‘ codec can‘t encode characters in position 48-56: ordinal not in range(256)

报错信息:

Python报错:‘latin-1‘ codec can‘t encode characters in position 48-56: ordinal not in range(256)_第1张图片
原因:
因为 console 是字节流输出,Python 3 源码文件以 UTF-8 编码,所有字符串都是 unicode 字符串。

注意:Unicode只是一个符号集,它规定了符号的二进制代码,却没有规定二进制代码如何存储。
所称的Unicode编码指的是UCS编码方式,即直接存入符号的Unicode二进制代码。

解决办法:

找到对应文件加上代码: data=data.encode(“utf-8”)

encode() 方法以指定的编码格式编码字符串。
Python报错:‘latin-1‘ codec can‘t encode characters in position 48-56: ordinal not in range(256)_第2张图片
再次运行,问题已解决,运行成功!!!

你可能感兴趣的:(Python学习,python,字符串)