There are three kinds of built-in numbers in Python:
intsfloatscomplexIntegers
ints
class int(x, base=10)
Floating Point Numbers
floats
Floating point numbers are implemented in Python using a double in C
Floats have a 15 decimal place of precision.
class float([x])