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