Conditional Statements Flashcards
1
Q
if
A
if the condition is true then do something, otherwise carry on.
2
Q
if else
A
If the condition is true do something
If the condition is false do something else
3
Q
if elif else
A
Keep testing for different conditions
As soon as one is true
Do something
Otherwise do something else.