This is HTML source:
<td style="padding-right: 10px;" valign="top">1.1</td>
<td valign="top">
If applicable, do <a href="url"> link </a> to switch one to other mode.<br/>
</td>
From above, how can I extract only strings? I tried it like below. Although first one work, second one doesn't work.
print(soup.find_all("td")[0].string)
print(soup.find_all("td")[1].string)
1.1
None