2

我阅读了与我的问题相关的其他线程,但它没有解决问题。

<h2 class="tabellen_ueberschrift al">Cards</h2>
<div class="fl" style="width:49%;">     
<table class="tabelle_grafik lh" cellpadding="2" cellspacing="1">
        <tr>
            <th class="al" colspan="3">CA Osasuna</th>              
        </tr>

            <td class="s10 al">
                <a href="/en/sisi/profil/spieler_51713.html" class="fb s10" title="Sisi">Sisi</a>
                <br />
                26.  min. 2. yellow card, Time wasting              </td>
        </tr>

我想在a表中获取所有标签(会有几个),所以我的代码是这样的:

header = soup.find('h2', text="Cards")
cards_table = header.find_next_siblings(limit=2)
for row in cards_table.find_all('a'):
    print row

这提高了我

AttributeError: 'ResultSet' object has no attribute 'find_all'

cards_table是一个表,我用循环对其进行迭代,for所以不确定为什么会导致错误。请问有什么想法吗?

4

1 回答 1

6

好的,代码少了一行:

for line in cards_table:
    for row in line.find_all('a'):
        print row

cards_table是一个列表,因此我们必须先对其进行迭代,然后才能使用find_all该表的方法。

于 2013-04-08T13:30:58.170 回答