def second_index(text: str, symbol: str) -> [int, None]:
"""
returns the second index of a symbol in a given text
"""
index = text.find(symbol)
if index != -1:
index = text.find(symbol, index + 1)
if index != -1:
return index
else:
return None
else:
return None
if __name__ == '__main__':
print('Example:')
print(second_index("sims", "s"))
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!')