Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
short solution in Clear category for Second Index by samatdav02
def second_index(text,symbol):
return None if text.count(symbol)<2 else text.find(symbol,text.find(symbol)+1)
June 30, 2019
Comments: