Answers for "remove alphabet and special characters from list python"

1

python remove special characters from list

import re
my_list= ["on@3", "two#", "thre%e"]
print [re.sub('[^a-zA-Z0-9]+', '', _) for _ in my_list]
Posted by: Guest on November-06-2020
0

remove alphabetic characters python

numeric_answer = filter(str.isdigit, original_string)
numeric_answer = "".join(numeric_answer)
Posted by: Guest on October-31-2020

Code answers related to "remove alphabet and special characters from list python"

Python Answers by Framework

Browse Popular Code Answers by Language