私は、.contentsはタグの直接の子を返します。子に反復したい場合は、.childrenを使うべきです。しかし、私は両方を試して、同じ出力を得ました。.contentsと.childrenの違い
html_doc = """
<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title"><b>The Dormouse's story</b></p>
<p class="story">Once upon a time there were three little sisters; and their names were
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>,
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>;
and they lived at the bottom of a well.</p>
<p class="story">...</p></body></html>
"""
soup = BeautifulSoup(html_doc, "html.parser")
title_tag = soup.title
for child in title_tag.children:
print(child)
for child in title_tag.contents:
print(child)
'NameError:name 'title_tag' not not defined'が見つかりました。これを実際の例にするのはどうですか? – tdelaney
申し訳ありません。さて、やった! – Hamza