## Simple statements: Are usually single liners.
# all assignments, expressions
# For example
a = 40
t = "This" + "Time"
# and also keywords like
yield, del, return, pass, raise, break, continue, global, nonlocal, import
## Compound statements: Can be multi liners.
# like function and class definitions which we will cover later on
# and also keywords like
if, else, elif, while, for, try, with