In the following kind of HTML table's columns, I can't get the numeric values under the quotation marks with the find_all('td')[i].text command. Python returns me blank values instead of 3.03, 1.21, etc... Please can someone help me catching those values?
<td class="table-main__odds colored" data-oid="5lmp0xv464x0xf55p3"><span><span><span data-odd="3.03"></span></span></span></td>
<td class="table-main__odds colored" data-oid="5lmp3xv464x0xf55p9"><span><span><span data-odd="1.21"></span></span></span></td>
<td class="table-main__odds" data-odd="3.23" data-oid="5lmovxv464x0xf55p1"></td>
find_all('td')[i].text ---> Output : blank vaues