Python 错误:AttributeError: 'dict' object has no attribute 'encode'

原因是因为字典无法使用encode方法进行编码,使用encode方法编码的可以是一个字符串。比如str1 = 'Hello world 你好',可以使用str1.encode(),而dict1 = {'n2':840,'la':39.98049465154441,'l':False}无法进行dict1.encode

Python 错误:AttributeError: 'dict' object has no attribute 'encode'_第1张图片

Python 错误:AttributeError: 'dict' object has no attribute 'encode'_第2张图片

你可能感兴趣的:(Python+Django,Python,'dic,Python,错误,Python)