Contact: aviboots(AT)netvision.net.il
39,939 questions
51,876 answers
573 users
s = "c++ c php python golang python java" index = s.find("python") if (index != -1): print(index, s[index], s[index + 1]) else: print("not found") ''' run: 10 p y '''