I\'m starting to learn Python and I\'ve decided to code a simple scraper. One problem I\'m encountering is I cannot convert a NavigableString to a regular string.
U
I came up to this question and got it solved best by the answer of Mark Ramson from How to remove this \xa0 from a string in python? with
import unidecode word = unidecode.unidecode(tag.string)