In the previous article, we saw how to check whether all the values in an iterable object are True in Python.
In this article, we are going to see whether there is at least one condition that is satisfied in an iterable object in Python.
Let us suppose that we have the following list:
We want to see whether we have earned more than 4000 in at least 1 month.
Continue reading