Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Second Index by colinmcnicholl
def second_index(text: str, symbol: str):
"""Input: Two strings.
Returns index of the second occurrence of the second string in the first one.
Ouput: Int or None.
"""
index2 = text.find(symbol, text.find(symbol) + 1)
if index2 == -1:
return None
else:
return index2
if __name__ == '__main__':
print('Example:')
print(second_index("sims", "s"))
# These "asserts" are used for self-checking and not for an auto-testing
assert second_index("sims", "s") == 3, "First"
assert second_index("find the river", "e") == 12, "Second"
assert second_index("hi", " ") is None, "Third"
assert second_index("hi mayor", " ") is None, "Fourth"
assert second_index("hi mr Mayor", " ") == 5, "Fifth"
print('You are awesome! All tests are done! Go Check it!')
Feb. 23, 2019