html_doc ="""
<html><head><title>The Dormouse's story</title></head>
<body>
<p class="title" id="1"><b>first</b><b>test<b><b>The Dormouse's story</b><b>two</b></b></b></p>
<p id="1" 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>
"""
print(type(soup.title.descendants))for i in soup.p.descendants:print(i)
<class 'generator'>
<b>first</b>
first
<b>test<b><b>The Dormouse's story</b><b>two</b></b></b>
test
<b><b>The Dormouse's story</b><b>two</b></b>
<b>The Dormouse's story</b>
The Dormouse's story
<b>two</b>
two