variable
BasicsWhat this creature is
A variable is a name you give to a value stored in memory. You assign a value with = and can use that name later in your program.
Why you will regret ignoring it
Variables let you reuse values, update them, and keep your code readable. Without them, you would repeat the same literals everywhere.
Example
name = "Alex"
age = 20
Common disgrace
Using the same variable name for different things in one program, then getting confused when the value is not what you expect.
Trial by code
Create two variables: one for a word (string) and one for a number. Print both on one line.