Getting started
Basic concepts: taking our first steps
Using an IDE
Objects and classes
Loops, ranges, and iterators
Working with files
Exception handling
Python data types
Course project: building a TODO application
And now what?

Variables

python variable

Variables are used to store information. A variable always has a name, and we can reference the variable by its name. This way, the information stored in a variable can be used elsewhere in your program. In other words, variables can be used to label a piece of data, and reuse that data later on.

This section introduces variables and shows you how to create and use them. We will not yet touch on the more advanced subjects, like variable scope, if you were wondering. Rest assured that it will come at a later point in this course.