๐Ÿ 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! ๐ŸŽฎ