Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
clear solution in Clear category for Second Index by sanello
def second_index(text, symbol):
if symbol in text and text.count(symbol) > 1:
return text.find(symbol, text.find(symbol) + 1)
else:
return None
Aug. 8, 2019
Comments: