BIT BY BYTE
Variables & Data Types1 / 12

What is a variable?

A variable is a named location in memory that stores a value. You can change the value while the program runs — that's why it's called *variable*.

```python

score = 0

name = "Alex"

is_winner = False

```

Good variable names describe what the value represents — `score` is clearer than `s`.