get starting index and ending index of substring in string python code example
Example: python string indexof
s = "mouse"
animal_letter = s.find('s')
print animal_letter
s = "mouse"
animal_letter = s.find('s')
print animal_letter