How to check if a list is strictly increasing in Python

1 Answer

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

'''

 



answered Feb 22, 2024 by avibootz

Related questions

1 answer 110 views
1 answer 113 views
1 answer 120 views
1 answer 151 views
1 answer 165 views
...