html=requests.get(t).json()
时间: 2023-06-24 08:04:24 浏览: 137
python requests 使用快速入门
这段代码有误,因为requests.get()方法返回的是一个response对象,而不是json格式的数据。如果你想获取json格式的数据,需要使用response对象的.json()方法,例如:
```
response = requests.get(t)
html = response.json()
```
阅读全文