Contact: aviboots(AT)netvision.net.il
40,764 questions
53,140 answers
573 users
import re s = 'python345java3c++12c948432swift' lst = re.split('\d+', s) print(lst) ''' run: ['python', 'java', 'c++', 'c', 'swift'] '''