Contact: aviboots(AT)netvision.net.il
41,467 questions
54,014 answers
573 users
def not_increasing(lst): return all(x >= y for x, y in zip(lst, lst[1:])) lst = [89, 70, 44, 32, 25, 19, 18, 7, 5, 3, 1] print(not_increasing(lst)) ''' run: True '''