Variables are called variables because the values they store can change. We can update status
by using =
and giving it a new value.
We can update variables as often as we want. Try it yourself: change the value of status
to 2 and print it.
>>> status = 1
>>> status
1
>>> status = 2
>>> status
2