Indexofpassword Here
def index_of_password(password, string): try: return string.index(password) except ValueError: return -1
Leo double-clicked.
def index_of_password(password, string): try: return string.index(password) except ValueError: return -1
Leo double-clicked.