Lesson 1 of 8 · 7 min
Variables, data types and operators
A variable stores a value the program can use and change. Values have types: numbers, strings (text), and booleans (true/false). Operators do work: arithmetic (+ − × ÷) on numbers, and comparison (> < =) that returns true/false.
score = 0 · name = "Aria"
Variables hold typed values
Let’s try it! ✍️
Question 1 of