Similar to the case of using any(), we can also use a method that allows us to check whether all conditions are met. This can also greatly reduce the complexity of the code since you do not need to use multiple and checks.

Let us see this with an example.

Let us assume that we have the following conditions where we are checking whether we have more than 50 points in each school course:

 math_points = 51
 biology_points = 78
 physics_points = 56
 history_points = 72
 ​
 my_conditions = [math_points > 50, biology_points > 50,
                  physics_points > 50, history_points > 50]

Now passing all of them means that each condition should be met. To help us with that, we can simply use all(), as can be seen in the following snippet:

Continue reading