how to delete every char that is not alphabet in list python code example
Example: remove alphabetic characters python
numeric_answer = filter(str.isdigit, original_string)
numeric_answer = "".join(numeric_answer)
numeric_answer = filter(str.isdigit, original_string)
numeric_answer = "".join(numeric_answer)