Lesson 2 — Variables
Storing values
A variable is a labelled box that remembers a value so you can reuse it. Create one with name = value, then use the name anywhere you need that value.
Why it matters: variables let your program hold on to data — a user name, a score, a total — and change it as the program runs.
Tip: the = sign means "store into", not "equals". Read x = 5 as "put 5 into x".
Store your name in a variable and print: Hello, <name>
A quick 3-question quiz on this lesson — instant feedback.
Ready for more? These paid resources pick up where this lesson leaves off.
Project-based Python Foundations video courses — the perfect paid next step after these free lessons.
Browse on Udemy →Hand-picked Python Foundations books to master the fundamentals offline.
See on Amazon →Some links on this page are affiliate links: we may earn a commission at no extra cost to you. We only recommend tools we believe are genuinely useful.