Variables= containers for storing data
**age** = 25
name = “Manuel”

Explanation
A variable allows you to store information and reuse it later in your program.

Example

name = "Gustav"
  • Variable: name
  • Value: "Gustav"