I have the following text in a class 'bs4.element.Tag'
object:
<span id="my_rate">264.46013</span>
How do I strip the value of 264.46013 and get rid of the junk before and after the value?
I have seen this and this but I am unable to use the text.split()
methods etc.
Cheers