Python is used extensively in finance, simulation, data science, statistical analysis, and in many other mathematically-intensive fields of work. The reason being is that Python makes working with numbers very easy and intuitive.
You can't avoid math, but you knew that already, right?
Arithmetic Operators
Here are the most common arithmetic operators that allow you to manipulate numbers in Python.
Addition
You can add numbers in Python using the + operator.
PYTHON
x = 2
y = 5
total = x + y
print(total)
BASH
7
Subtraction
You can subtract numbers in Python using the - operator.
PYTHON
x = 8
y = 3
total = x - y
print(total)
BASH
5
Multiplication
You can multiply numbers in Python using the * operator.
PYTHON
x = 4
y = 6
total = x * y
print(total)
BASH
24
Division
You can divide numbers in Python using the / operator.
PYTHON
x = 54
y = 2
total = x / y
print(total)
BASH
27.0
Modulus
You can find the remainder of a division in Python using the % operator.
PYTHON
x = 64
y = 23
total = x % y
print(total)
BASH
18.0
Exponents
You can find the power of a number in Python using the ** operator.
PYTHON
x = 2
y = 4
total = x ** y
print(total)
BASH
16
Order of Operations
Order of Operations, also known as PEMDAS, is at play here, including with the use of parentheses.
PYTHON
x = (4 * 5) + 20 / 4print(x)
BASH
25
Python Number Types
There are three kinds of numbers in Python, and they are as followed:
int
float
complex
PYTHON
a = 1337# int
b = 13.37# float
c = 1337j# complexprint(type(a))
print(type(b))
print(type(c))
BASH
<class 'int'>
<class 'float'>
<class 'complex'>
int
Integers are whole numbers like 4 or 532. They can be positive or negative, and they don't contain any decimals.
PYTHON
a = 423
b = 74
c = 87937595
These are all valid integers.
Float
Floating point numbers are numbers containing a decimal, and can also be positive or negative. Here are some examples:
PYTHON
a = 1.53
b = 3.1
c = -95.23
Complex
Complex numbers are Python's representation of imaginary numbers, and they use a j to represent the i.
PYTHON
a = 4+2j
b = 9j
c = -3j
Number Type Conversion
Python offers built-in methods to convert between these types using the float(), int(), and complex() methods.
PYTHON
a = 5# int
b = 3.3# float
c = 7j# complexfloat = float(a)
int = int(b)
complex = complex(a)
print(float)
print(int)
print(complex)
print(type(float))
print(type(int))
print(type(complex))
We mentioned before that Python is used heavily in any field that utilizes math. The built-in methods that Python provides is a large reason why. Here are some of the most common ones:
Absolute Value
Get the absolute value of a number by using the abs() method:
PYTHON
number = -34print(abs(number))
BASH
34
Floor
Use the floor() method to get the number passed in rounded down to the nearest integer if it is not already an integer.
PYTHON
import math
number = 6.21print(math.min(number))
BASH
6
Ceiling
Use the ceil() method to get the number passed in rounded up to the next highest integer if it is not already an integer.
PYTHON
import math
number = 6.21print(math.ceil(number))
BASH
7
Natural Logarithm
You can get the natural logarithms of a number using log().
PYTHON
import math
number = 123print(math.log(number))
BASH
4.812184355372417
Base-10 Logarithm
Alternatively, you can also get the base-10 logarithm of a number using log10().
PYTHON
import math
number = 123print(math.log10(number))
BASH
2.089905111439398
Maximum
You can get the maximum of two or more numbers using the max() method:
You can round off any number to the nearest integer using round().
PYTHON
number = 3.1459
places = 3print(round(number, places))
BASH
3.146
Square Root
You can take the square root of a number using sqrt().
PYTHON
import math
number = 81print(math.sqrt(number))
BASH
9
Random
Generating random numbers in Python is easy. There's a module named random that has all we need. Call the randrange() method to get a number in between two other numbers you define:
PYTHON
import random
start = 1
end = 10print(random.randrange(start, end))
BASH
6
Math Constants
One last cool to point out is that Python's math module also comes with some predefined constants for us.
Euler's Number
One of the constants that the math module comes with is Euler's Number:
PYTHON
import math
e = math.e
print(e)
BASH
2.718281828459045
Pi
Python's math module also comes with a value for Pi, the ratio of the circumference of a circle relative to its diameter.