python爬取数据写入txt文件 代码实现
时间: 2023-04-05 20:01:55 浏览: 150
Python基于pandas爬取网页表格数据
5星 · 资源好评率100%
您好,以下是回答您的问题:
Python 爬取数据并写入 txt 文件的代码实现:
```python
import requests
url = 'http://example.com' # 网页地址
response = requests.get(url) # 发送 GET 请求
content = response.text # 获取网页内容
with open('data.txt', 'w', encoding='utf-8') as f:
f.write(content) # 将网页内容写入 txt 文件
```
以上代码会将指定网页的内容爬取下来,并写入名为 `data.txt` 的 txt 文件中。您可以根据实际需求修改代码中的网页地址和文件名。
阅读全文