Contact: aviboots(AT)netvision.net.il
41,318 questions
53,833 answers
573 users
import re s = 'python java c++ c swift' s = re.split(' +', s) print(s) ''' run: ['python', 'java', 'c++', 'c', 'swift'] '''