Conditional execution can be completed using the if statement
if syntax
if expression:
# code to execute
else:
# code to execute- < less than
- > greater than
- == is equal to
- >= greater than or equal to
- <= less than or equal to
- != not equal to
Conditional execution can be completed using the if statement
if syntax
if expression:
# code to execute
else:
# code to execute