๐ Learn Python Basics
๐ Lesson 1: Variables
๐ What is a Variable?
Think of it like a Box! ๐ฆ
A variable is like a box where you can store things! You can put your favorite toy, a cookie, or a number inside.
Example:
toy = "Teddy Bear"
Here, we put a Teddy Bear inside the toy
box!
๐ฅ What about Numbers?
We can store numbers too! Like counting cookies:
cookies = 5
Now, cookies
holds the number 5!
๐ก Remember:
- โ
Words go inside
"quotes"
- โ Numbers donโt need quotes
- โ You can change whatโs inside anytime!
Try running this in the mini-game! ๐ฎ