Contact: aviboots(AT)netvision.net.il
39,924 questions
51,857 answers
573 users
s = "java python c c++ php c# rust go pascal" words = " ".join(word for word in s.split() if not word.startswith("p")) print(words) ''' run: java c c++ c# rust go '''
s = "java python c c++ php c# rust go pascal" words = " ".join(filter(lambda word: not word.startswith("p"), s.split())) print(words) ''' run: java c c++ c# rust go '''