Answers for "remove\xa0 python"

0

remove\xa0 python

# \xa0 is actually non-breaking space in Latin1 (ISO 8859-1

text = text.replace(u'\xa0', u' ')
Posted by: Guest on April-23-2022

Python Answers by Framework

Browse Popular Code Answers by Language