Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in Clear category for Second Index by ndj_ys
def second_index(text: str, symbol: str) -> [int, None]:
return text.find(symbol,text.find(symbol)+1) if text.count(symbol) > 1 else None
Sept. 9, 2018