So I made a code that reads and prints everything in between specified text in HTML code, example , reads all between paragraphs<> - this gets printed. This was from sentdex lesson - here
There is no problem with code, but rather with what is coming out. I filtered with very specific criteria
paragraphs = re.findall(r'<div style="font-size: 23px; margin-top: 20px;" class="jsdfx-sentiment-present">(.*?)</div>',str(respData))
So as already mentioned, it works. Content later is printed and it prints   . As I understand this is non-braking space in HTML. Instead of space I expected to see numbers. In this website , numbers in this location are updating every few seconds.
How can I get to these numbers instead of receiving  ?
Regards!