怎样通过bs4找出程序中 标签<div class="List2">的内容?
可以使用BeautifulSoup库(bs4)的find方法来找到程序中带有特定class属性的<div>标签,并通过.text属性获取其内容。
以下是一个示例代码:
`from bs4 import BeautifulSoup
html = '''
<html>
<head>
<title>示例网页</title>
</head>
<body>
<div class="List1">
<p>这是List1的内容</p>
</div>
<div class="List2">
<p>这是List2的内容</p>
</div>
<div class="List3">
<p>这是List3的内容</p>
</div>
</body>
</html>
'''
soup = BeautifulSoup(html, 'html.parser')
div = soup.find('div', class_='List2')
content = div.text
print(content)`
输出结果为:
这是List2的内容
在这个示例中,我们首先创建了一个包含<div>标签的HTML字符串。然后使用BeautifulSoup初始化一个soup对象,并调用find方法搜索具有class属性为"List2"的<div>标签。最后使用text属性获取该标签的内容。