Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple solution in Clear category for Second Index by sanayeon
def second_index(text, symbol):
if text.count(symbol) > 1:
return text.index(symbol, text.index(symbol) + 1)
else:
return None
Feb. 14, 2020