AttributeError: module ‘json’ has no attribute ‘dumps’ 在我们使用python3.x编写时程序,import json时会报错:“AttributeError: module ‘json’ has no attribute ‘dumps’” 解决方法 查看文档的命名(python file),若出现json,则将其修改替换,文件名不能使用库的名字。若使用json作为文件名,则import json 之后会默认从创建的文件中寻找json库,而不是从python内置的库中寻找,此时就会出错。