I have a list like
[\'hello\', \'...\', \'h3.a\', \'ds4,\']
this should turn into
[\'hello\', \'h3a\', \'ds4\']
To make a new list:
[re.sub(r'[^A-Za-z0-9]+', '', x) for x in list_of_strings]