用python写一个解析http://www.mysw.net/wldh.htm的代码
时间: 2023-06-26 07:06:31 浏览: 149
利用python进行数据分析 官网下载代码
好的,这里提供一个Python解析http://www.mysw.net/wldh.htm网页的示例代码:
```python
import requests
from bs4 import BeautifulSoup
# 发送HTTP请求获取网页内容
url = 'http://www.mysw.net/wldh.htm'
response = requests.get(url)
html = response.text
# 解析网页内容
soup = BeautifulSoup(html, 'html.parser')
for p in soup.find_all('p'):
print(p.text.strip())
```
解析过程中使用了`requests`库发送HTTP请求,使用了`BeautifulSoup`库解析网页内容。代码中通过`find_all`方法找到了所有`<p>`标签,并输出其文本内容。
注意:在运行代码前需要先安装`requests`和`beautifulsoup4`库。可以使用以下命令安装:
```
pip install requests beautifulsoup4
```
阅读全文