Year 7 Python Notes - Data Types
Year 7 Python Notes - Data Types
Variables can store data of different types, and different types can do different
things.
Python has the following data types built-in by default, in these categories:
Example
Print the data type of the variable x:
x = 5
print(type(x))
pg. 1
Setting the Data Type
In Python, the data type is set when you assign a value to a variable:
x = 20 int
x = 20.5 float
x = range(6) range
x = True bool
pg. 2
Setting the Specific Data Type
If you want to specify the data type, you can use the following constructor
functions:
x = int(20) int
x = float(20.5) float
x = range(6) range
pg. 3
x = bool(5) bool
pg. 4