This tutorial explains how to use variables in Python to store integers and strings. It also explains how to concatenate (join) strings in Python.
In programming, a variable is used to store data in a program. A variable can only store one value at a time, for example some text, a number, or a true/false value.
The different data types that a variable can store include:
- string – this is text which can include letters, numbers, and other characters. String values are stored inside quotation marks
- integer – whole numbers
- float – numbers with a decimal point
- boolean – a true/false value
You can view the video below or click here to watch it on YouTube.