Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
findAll結果を直接ループするだけです。
findAll
for elem in res.findAll('a'): print elem
この.find()メソッドは、見つかった最初の要素を返すだけresで、最後に見つかったヒットから検索を続行しません。したがって、ループを実行するたびに、同じ要素が見つかります。
.find()
res
結果の数を制限したい場合は、スライス表記を使用します。
for elem in res.findAll('a')[:3]: print elem