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 = len(s) while True: index = s.rfind("python", 0, index) if index == -1: break print(index) ''' run: 39 27 16 0 '''