An explanation of Python's two number types (integers and floating point numbers), supported arithmetic operations, and an explanation of operator precedence.

Table of contents
Integers
Integers are used for representing whole numbers.
>>> 55>>> 00>>> 999999999999999999999999>>> -10-10
Any number that doesn't have a decimal point in it is an integer.
Floating point numbers
Floating point numbers are used …