Contact: aviboots(AT)netvision.net.il
40,772 questions
53,160 answers
573 users
s = 'python java python' ch = 'p' result = s.index(ch, s.index(ch) + 1) - s.index(ch) print(result) ''' run: 12 '''