We've already seen a few kinds of data like numbers and strings. In programming terms, these values are called types.
Strings are characters between quotes " "
, like the value "High"
.
Integers represent whole numbers without decimal places, like 1
.
Floats describe floating-point numbers with one or more decial places after a point, like pi.
>>> a = "High"
>>> b = 1
>>> c = 3.1415926