0
Please, I need clarity on if and else statement.
7 Answers
+ 3
Victor Hope, good, wish you happy coding and learning
+ 7
Always welcomeđâș Victor Hope
+ 5
Doing the Python tutorial will help.
+ 4
These two come under conditionals statements. They are used to make choices in the code .
Similarly else statement is used to define a block which executes when none of the if has been exexuted .
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2277/
+ 4
It works like:
If some condition is true, then do something. Else (if condition is false), then do something else.
Enough, or need more explanation?
+ 2
Thanks Prince.
+ 2
Understood. #Maneren