I would like to know if it is a good practice to use tuples instead of separated expressions in a if statement.
is_dog = True
is_brown = False
I would like to do like this:
if (is_dog, is_brown):
do_something()
Instead of like this:
if is_dog or is_brown:
do_something()
What is the best practice in this case? Thank you