# remove numbers from string s = '12abcd405' result = ''.join([i for i in s if not i.isdigit()])
Remove numbers from a string
0 Comments