I\'m building a data extract using scrapy and want to normalize a raw string pulled out of an HTML document. Here\'s an example string:
Sapphire RX460 OC
You can use:
" ".join(s.split())
where s is your string.
s