Arithmetic and Statistical Operations
Learn about the usage of different arithmetic and statistical operations in Python.
We'll cover the following
Arithmetic operations
We can perform many operations, such as +
, -
, *
, /
, and %
, on two arrays. When we use these operators, the operations are performed on the corresponding elements of the two arrays. Instead of using these operators, we can also use methods like add()
, subtract()
, multiply()
, divide()
, and remainder()
. These operations are often known as vector operations.
Get hands-on with 1200+ tech skills courses.