回答編集履歴
1
d
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<" 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
|
```
|