Contact: aviboots(AT)netvision.net.il
39,950 questions
51,892 answers
573 users
def strictly_increasing(lst): return all(x < y for x, y in zip(lst, lst[1:])) lst = [1, 3, 4, 6, 8, 9, 11, 17, 18, 37] print(strictly_increasing(lst)) ''' run: True '''