BeautifulSoup how to getText from all td tags

Hi, have the following html:

<td class="Pos(st) Start(0) Bgc($lv2BgColor) Pend(10px)  Miw(140px) ">
<span data-reactid="336">Some Text</span></td>

<td class="Fz(s) Fw(500) Ta(end) Pstart(10px) Miw(60px)" >0.09</td>

Using BeautifulSoup
I want to find all td tags with class “Pos(st)” and containing a span tag and extract “Some Text”
Then from the td tag after the span tag and extract “0.09”
and display:
Some Text : 0.09
For all occurrences of above td tags.
Thanks for any help