Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Second Index by vashrepetitor05
def second_index(text: str, symbol: str) -> [int, None]:
try:
return text.index(symbol, text.index(symbol) + 1)
except ValueError:
return None
Oct. 13, 2019
Comments: