查询到最新的2条

UnicodeDecodeError

UnicodeDecodeError当在解码过程中发生与 Unicode 相关的错误时将被引发。 此异常是 UnicodeError 的一个子类。本文地址:https://my.lmcjl.com/exception/unicode-decode-error版权声明:个人博客原创文章,转载请注明出处和网址。,欢迎加入。 继续阅读

Python str()

内置函数str()用于将给定对象转换为字符串格式。输出字符串的行为取决于参数编码和错误。 **str(object, encoding='utf-8', errors='strict')** #where object is whoes string representation needed str()参数: 取三个参数。参数错误有以下六种类型 严格的 -失败时会引发一个 UnicodeDecodeError 异常。 忽略 -从结果中忽略不可编码 继续阅读