--- title: Python Numeric Operations --- Python Docs - Numeric Operations Python fully supports mixed arithmetic: when a binary arithmetic operator has operands of different numeric types, the operand with the "narrower" type is widened to that of the other, where integer is narrower than floating point, which is narrower than complex. Comparisons between numbers of mixed type use the same rule. 2] The constructors int(), float(), and complex() can be used to produce numbers of a specific type. All numeric types (except complex) support the following operations, sorted by ascending priority (all numeric operations have a higher priority than comparison operations): Operation | Results | Notes | Full documentation ----------------- | --------------------------------------------------------------------------- | ------ | ----------------------------------------------------------------------- `x + y` | sum of x and y | | `x - y` | difference of x and y | | `x * y` | product of x and y | | `x / y` | quotient of x and y | | `x // y` | floored quotient of x and y | (1) | `x % y` | remainder of x / y | (2) `-x` | x negated | | `+x` | x unchanged | | `abs(x)` | absolute value or magnitude of x | | [`abs()` `int(x)` | x converted to integer | (3)(6) | `int()` `float(x)` | x converted to floating point | (4)(6) | `float()` `complex(re, im)` | a complex number with real part re, imaginary part im. im defaults to zero. | (6) | `complex()` `c.conjugate()` | conjugate of the complex number c | | `divmod(x, y)` | the pair (x // y, x % y) | (2) | `divmod()` `pow(x, y)` | x to the power y | (5) | `pow()` `x ** y` | x to the power y | (5) **Notes:** 1. Also referred to as integer division. The resultant value is a whole integer, though the result's type is not necessarily int. The result is always rounded towards minus infinity: `1//2` is `0`, `(-1)//2` is `-1`, `1//(-2)` is `-1`, and `(-1)//(-2)` is `0`. 2. Not for complex numbers. Instead convert to floats using `abs()` if appropriate. 3. Conversion from floating point to integer may round or truncate as in C; see functions `math.floor()` and `math.ceil()` for well- defined conversions. 4. `float` also accepts the strings `“nan”` and `“inf”` with an optional prefix `“+”` or `“-”` for Not a Number (NaN) and positive or negative infinity. 5. Python defines `pow(0, 0)` and `0 ** 0` to be `1`, as is common for programming languages. 6. The numeric literals accepted include the digits 0 to 9 or any Unicode equivalent (code points with the `Nd` property). > See Unicode Derived Numeric Type for a complete list of code points with the `Nd` property.