Variables can contain all types of values. Lest's take a look at storing text values.
After creating and naming a variable, we use the =
sign to store a value inside it.
fruit = "apple"
Storing a value in a variable is like putting stuff inside a labeled box. Here, the variable fruit
stores the value "apple".
>>> fruit = "apple"