Hapus karakter alfabet Python

numeric_answer = filter(str.isdigit, original_string)
numeric_answer = "".join(numeric_answer)
Salty Joe