Contact: aviboots(AT)netvision.net.il
39,884 questions
51,810 answers
573 users
s = 'Python Programming language' words = s.split(" ") for w in words: if w[0].isupper(): print(w) ''' run: Python Programming '''
s = 'Python Programming language' words = s.split(" ") flu = "" for w in words: if w[0].isupper(): flu += w + ' ' print(flu) ''' run: Python Programming '''