I have a list of elements containing special characters. I want to convert the list to only alphanumeric characters. No special characters. my_list = ["on@3", "two#", "thre%e"]
my expected output is,
out_list = ["one","two","three"]
I cannot simply apply strip() to these items, please help.