Skip to content
Advertisement

How to get all the Falsy variables without using `if` statements

Let’s say I have multiple variables like:

JavaScript

How can I determine which of the variables are not True? I am trying to identify this without using the if statements. For the above example, I want to just get 0 (falsy value) skipping the 2 (truthy value).

Advertisement

Answer

You can create a tuple of all your variables. And then use itertools.filterfalse() with bool as predicate value to get all the Falsy values from tuple as:

JavaScript

Similarly if you need a list of all the Truthy values, you can use filter() as:

JavaScript
Advertisement