Integer
Info:
Int or integer is a whole number, positive or negative, without decimals
Examples:
x = 1
y = 356382985829198382
z = -84297
print(type(x))
print(type(y))
print(type(z))
All the aboveprint()
functions will give int output as they are all integer numbers.