Contact: aviboots(AT)netvision.net.il
39,432 questions
51,241 answers
573 users
import re s = "pytnon4 @#%$ (PHP) !java 3.14" s = re.sub('[\W_]+', '', s) print (s) ''' run: pytnon4PHPjava314 '''
s = "pytnon4 @#%$ (PHP) !java 3.14" s = "".join(list([ch for ch in s if ch.isalpha() or ch.isnumeric()])) print (s) ''' run: pytnon4PHPjava314 '''
s = "pytnon4 @#%$ (PHP) !java 3.14" s = "".join(list([ch for ch in s if ch.isalnum()])) print (s) ''' run: pytnon4PHPjava314 '''