if, else if, else

if
The program runs when the condition is true.

if1's photo

if3's photo

if4's photo

if
If the condition is False, the program will not run.

if2's photo

You can run the program even if the condition is false by using else.

if5's photo

else if
You can add conditions by using else if.

if6's photo

if7's photo

if8's photo