🐍 Python Variables – Introduction

What is a Variable?

A variable is like a box that stores information. You give it a name, and it keeps a value you can use later.

x = 10
name = "Alice"
is_happy = True

Here, we created three variables: x, name, and is_happy.