Contact: aviboots(AT)netvision.net.il
39,939 questions
51,876 answers
573 users
s = "python c++ c go python php python java python" index = -1 while True: index = s.find("python", index + 1) if index == -1: break print(index) ''' run: 0 16 27 39 '''