Variables
What Are Variables?
If you are brand new to coding, the term variables might not immediately register. It’s important to understand what a variable is, as most coding languages do use them.
So What Are Variables?
Variables are containers that store values, such as:
Numbers:
- Integers (3)
- Float (3.0)
- String (“3”)
Text:
- Strings are plain text and are wrapped in parenthesis to tell Python to interpret the text as text only. “For example, this would be a string”
Boolean: