Contact: aviboots(AT)netvision.net.il
41,467 questions
54,014 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 '''