Teach Your Code to Remember Things!
Learn how to store and use data with variables.
We'll cover the following...
We'll cover the following...
So far, Python has said hello and done math. But now it’s time to give it a memory.
We’re going to learn how to make Python remember things using variables.
Teach Python to remember
Think of a variable like a label for a box. We can store something inside, and later, we can ask Python to use it again.
Press + to interact
Press + to interact
Python
name = "Ava"print(name)
...