How to check if a list is not decreasing in Python

1 Answer

0 votes
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

'''

 



answered Feb 22, 2024 by avibootz
...