【小白问题】requests
import requestsurl='http://www.baidu.com'
html=requests.get(url)
print(html.text)
错误
Traceback (most recent call last):
File "D:/py/requests.py", line 1, in <module>
import requests
File "D:\py\requests.py", line 4, in <module>
html=requests.get(url)
AttributeError: partially initialized module 'requests' has no attribute 'get' (most likely due to a circular import)
大佬们为什么会报错{:10_266:} 不要用requests.py来命名python文件,这种问题我见过两次了,给文件名命名是不要以模块名来命名 解决方法:把文件名改了 临时号 发表于 2022-8-3 01:26
解决方法:把文件名改了
刚刚上网查了,这样生产了.pyc文件,文件被当模块导入{:10_266:}
页:
[1]