Python Numeric Types - ashish9342/FreeCodeCamp GitHub Wiki
The numeric types for Python are:
- integers (
int
) - floating point numbers (
float
) - complex numbers
The standard library adds numeric types for
Numeric objects are created from literals or as the result of functions and operators. The syntax for numeric literals is well documented.