0
I cant seem to be able to remove the numbers please help
Spy life
3 Answers
+ 3
* You didn't save the `join` result into any variable.
* `isalnum` filters alphanumeric characters, digits included.
+ 1
Thanks
0
string = input()
''.join(e for e in string if e.isalnum())
str1 = string[::-1]
print(str1)