python网络爬虫初学者常见问题1

AttributeError: module ‘json’ has no attribute ‘dumps’

在我们使用python3.x编写时程序,import json时会报错:“AttributeError: module ‘json’ has no attribute ‘dumps’”
python网络爬虫初学者常见问题1_第1张图片

解决方法

查看文档的命名(python file),若出现json,则将其修改替换,文件名不能使用库的名字。若使用json作为文件名,则import json 之后会默认从创建的文件中寻找json库,而不是从python内置的库中寻找,此时就会出错。

python网络爬虫初学者常见问题1_第2张图片

你可能感兴趣的:(python网络爬虫初学者常见问题1)