0
Help me with else statements q3
Thanks guys
3 Answers
+ 1
if the if-condition is not true, then the else is executed
+ 1
help me with if else statement
+ 1
if(condition):
TRUE #Condition is true,TRUE block is executed.
else:
FALSE #Condition is false,FALSE block is executed.
Only one of the blocks will be executed.