Entfernen Sie Nicht-ASCII-Zeichen Python

encoded_string = string_with_nonASCII.encode("ascii", "ignore")
Random Person