I've scraped a webpage with BeautifulSoup and I'm trying to retrieve the string between the <span...>'s:
<span class="example">Interesting 10</span>
<span class="example">Interesting 12</span>
<span class="example">Interesting 14</span>
.
.
.
The output would be:
Interesting 10
Interesting 12
Interesting 14
.
.
.
I tried: text.string and .string. Yet it seems not to be working.
Thanks!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…