beautifulsoup: find_all no objeto ou lista bs4.element.ResultSet?

Oi, então eu aplico find_all em umbeautifulsoup objecte encontre algo, que é umbs4.element.ResultSet object ou umlist.

Quero ainda encontrar find_all lá, mas não é permitido em umbs4.element.ResultSet object. Eu posso percorrer cada elemento dobs4.element.ResultSet object fazer find_all. Mas posso evitar o loop e convertê-lo novamente em umbeautifulsoup object?

Consulte o código para obter detalhes, por favor. obrigado

html_1 = """
<table>
    <thead>
        <tr class="myClass">
            <th>A</th>
            <th>B</th>
            <th>C</th>
            <th>D</th>
        </tr>
    </thead>
</table>
"""
soup = BeautifulSoup(html_1, 'html.parser')

type(soup) #bs4.BeautifulSoup

# do find_all on beautifulsoup object
th_all = soup.find_all('th')

# the result is of type bs4.element.ResultSet or similarly list
type(th_all) #bs4.element.ResultSet
type(th_all[0:1]) #list

# now I want to further do find_all
th_all.find_all(text='A') #not work

# can I avoid this need of loop?
for th in th_all:
    th.find_all(text='A') #works

questionAnswers(1)

yourAnswerToTheQuestion