Contact: aviboots(AT)netvision.net.il
40,758 questions
53,129 answers
573 users
s = "python c c++ java c#" N = 3 lst = s.split()[:N] first3 = ' '.join(lst) print(first3) ''' run: python c c++ '''