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