Image of Hokie Bird holding 148th birthday sign.

anniversary = 147
print(anniversary)
print("A year has passed!")
anniversary = anniversary + 1
print(anniversary)

What is printed when this program runs?
Choose an answer above!
  • We can also use a variable's old value to assign itself a new value.
  • In this example, we are reassigning anniversary to be it's old value plus 1.
  • Read through the code and answer the question!