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