Data Type
No account is required. Learn the material, try the examples, and mark it complete locally when you are ready to move on.
Integers
a = 10
print(a)10
Just like the print function, there exists a type() function in python which tells us the type of an object inside python.
print(type(a)) # Yes we can chain functions together<class 'int'>