Remova os personagens não-ASCII Python

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