Data Types
integers - whole numbers (positive and negative)
floats - numbers with decimals
type - returns the data type of a variable
x = 1
y = 35656222554887711
z = -3255522
print(type(x))
print(type(y))
print(type(z))

Last updated
integers - whole numbers (positive and negative)
floats - numbers with decimals
type - returns the data type of a variable
x = 1
y = 35656222554887711
z = -3255522
print(type(x))
print(type(y))
print(type(z))
Last updated