0

# variable = a reusable container for storing a value
#            a variable behaves as if it were the value it contains

age = 16
print(age)  # note: no parenthesis (quotes)
Multiple Assignment