How can I extract the prices from a list that contains for example:
[<span class="primary-price">$61,989</span>,
<span class="primary-price">$21,905</span>,
<span class="primary-price">$20,595</span>]
It should give me back: prices = [61.989,21.905,20.595] or at least prices = [$61,989, $21,905, $20,595]