Beautiful Soup 的 find(~)
方法返回與搜索條件匹配的第一個標簽。如果您想返回符合特定條件的所有標簽,請參閱 find_all(~)
方法。
例子
基本用法
考慮以下 HTML 文檔:
my_html = """
<p id="alex">Alex</p>
<p>Bob</p>
<p id="cathy">Cathy</p>
"""
soup = BeautifulSoup(my_html, "html.parser")
要查找第一個 <p>
標記:
soup.find("p")
<p id="alex">Alex</p>
相關用法
- Python BeautifulSoup find_next方法用法及代碼示例
- Python BeautifulSoup find_all_next方法用法及代碼示例
- Python BeautifulSoup find_next_sibling方法用法及代碼示例
- Python BeautifulSoup find_previous_sibling方法用法及代碼示例
- Python string find()用法及代碼示例
- Python BeautifulSoup find_parent方法用法及代碼示例
- Python BeautifulSoup find_all方法用法及代碼示例
- Python BeautifulSoup find_parents方法用法及代碼示例
- Python NumPy finfo方法用法及代碼示例
- Python calendar firstweekday()用法及代碼示例
- Python NumPy fill_diagonal方法用法及代碼示例
- Python filecmp.cmpfiles()用法及代碼示例
- Python fileinput.filelineno()用法及代碼示例
- Python fileinput.lineno()用法及代碼示例
- Python fileinput.input用法及代碼示例
- Python NumPy fix方法用法及代碼示例
- Python fileinput.isfirstline()用法及代碼示例
- Python fileinput.input()用法及代碼示例
- Python fileinput.filename()用法及代碼示例
- Python filter()用法及代碼示例
- Python NumPy fliplr方法用法及代碼示例
- Python dict fromkeys()用法及代碼示例
- Python frexp()用法及代碼示例
- Python functools.wraps用法及代碼示例
注:本文由純淨天空篩選整理自Arthur Yanagisawa大神的英文原創作品 BeautifulSoup | find method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。