Contact: aviboots(AT)netvision.net.il
41,467 questions
54,014 answers
573 users
def not_decreasingin(lst): return all(x <= y for x, y in zip(lst, lst[1:])) lst = [1, 3, 7, 9, 10, 13, 28, 31, 48, 50, 70, 91] print(not_decreasingin(lst)) ''' run: True '''