python from a list of stings how to remove all strings with non ascii characters code example
Example: python remove all unicode from string
return ''.join([i if ord(i) < 128 else ' ' for i in text])
return ''.join([i if ord(i) < 128 else ' ' for i in text])