teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

1

d

2019/04/04 06:53

投稿

tiitoi
tiitoi

スコア21960

answer CHANGED
@@ -30,4 +30,12 @@
30
30
  # <h4 class="ne" data-ne="SSS" style="height: 13px;">SSS</h4>
31
31
  # <h5 class="ct" data-cy="VVV" style="height: 10px;">VVV</h5>
32
32
  # <h6 class="ee" data-ee="OOO&lt;" style="height: 10px;">OOO</h6>
33
+
34
+ for tag in soup.find_all('div', class_='LP-RT-AE'):
35
+ print(tag.h4.text)
36
+ print(tag.h5.text)
37
+ print(tag.h6.text)
38
+ # SSS
39
+ # VVV
40
+ # OOO
33
41
  ```