This time you will learn how to check type of variable in Python.
To check variable data type just use built-in function type()
print(type(variable))
Example code:
i = [1,2,3] print(type(i)) myPet = 'dog' print(type(myPet)) myNumber = 2.86 print(type(myNumber))
