Conditional statement
Conditional statement
if <condition>:
True here
statements
elif <condition>:
True here
statements
…
else:
Catch all other here
statements
Example:
Last updated
if <condition>:
statements
elif <condition>:
statements
…
else:
statements
Example:
Last updated