css选择器python
时间: 2023-11-09 12:02:48 浏览: 176
您可以使用Python中的BeautifulSoup库来选择CSS选择器。以下是一个示例代码:
```python
from bs4 import BeautifulSoup
html_doc = """
<html>
<head>
<title>Example</title>
</head>
<body>
<div class="container">
<h1>Title</h1>
<p class="text">Paragraph 1</p>
<p class="text">Paragraph 2</p>
</div>
</body>
</html>
"""
soup = BeautifulSoup(html_doc, 'html.parser')
paragraphs = soup.select('.text')
for p in paragraphs:
print(p.text)
```
这将输出所有类名为"text"的段落元素的文本内容。
阅读全文