Sorry for the basic question.
I couldn’t find it by searching.
Is this if statement an and condition?
if(test1 >= test2, test2 > 0):
If test1 > test2 is true and if test2 > 0 is true,
does that mean the if statement will be executed?
Sorry for the basic question.
I couldn’t find it by searching.
Is this if statement an and condition?
if(test1 >= test2, test2 > 0):
If test1 > test2 is true and if test2 > 0 is true,
does that mean the if statement will be executed?
and
and ,
don’t have the same precedence order (not sure if we can talk about precedence for the coma though), but basically they’re the same yes
Thanks for telling me.
I would like to learn Verse little by little.
Thanks for telling me.
I would like to learn Verse little by little.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.