supprimer les caractères non ascii python

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