Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Second Index by StanislauL
def second_index(text: str, symbol: str):
num = text.find(symbol, text.find(symbol)+1)
return num if num>-1 else None
Jan. 20, 2018
Comments: