9,363 questions
12,886 answers
573 users
s = 'python php java php python' i = s.find('php') i = s.find("php", i + 1) print(i) ''' run: 16 '''