There are three kinds of built-in numbers in Python:

  1. ints
  2. floats
  3. complex

Integers

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])