BeautifulSoup Obtenez du texte
# Find all of the text between paragraph tags and strip out the html
page = soup.find('p').getText()
Disgusted Dugong
# Find all of the text between paragraph tags and strip out the html
page = soup.find('p').getText()
soup.find_all("a", string="Elsie")
# [<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>]