I’m trying to make a function where two variables are in one if
statement. followed by a(n) == True
. It doesn’t work, but here’s what I tried in a better format.
JavaScript
x
5
1
if var1, var2 == True:
2
print("This function is correct")
3
else:
4
print("This function doesn't work")
5
but it returned this message:
JavaScript
1
2
1
Invalid Syntax
2
Is there a way to make this function possible?
Advertisement
Answer
Keep in mind that you can take advantage var1
and var2
are booleans, so:
JavaScript
1
3
1
if var1 and var2:
2
# your logic
3
Alternative, you can use the all
function
JavaScript
1
3
1
if all([var1, var2]):
2
# your logic
3
Note: you don’t need to check equality for True
in a conditional, the point is to take advantage of that.