Traceback (most recent call last): File "C:\Users\Administrator\Desktop\1.py", line 3, in <module> res = resquests.get(url) NameError: name 'resquests' is not defined. Did you mean: 'requests'?
时间: 2023-12-19 16:13:04 浏览: 101
Mac下anaconda中Spyder打开报错Traceback(most recent call last)…问题
5星 · 资源好评率100%
这个错误提示表明你在代码中将 requests 拼写成了 resquests,导致 Python 找不到该模块。你只需要将代码中的 resquests 改为 requests 即可:
```
res = requests.get(url)
```
这样就可以正常运行了。注意,Python 是区分大小写的,所以要保证拼写正确。
阅读全文