remove unicode from string python

Solutions on MaxInterview for remove unicode from string python by the best coders in the world

showing results for - "remove unicode from string python"
Olivia
15 Apr 2016
1.encode("ascii", "ignore")
Fynn
09 Jun 2020
1return ''.join([i if ord(i) < 128 else ' ' for i in text])