Add, subtract, multiple and divide two Pandas Series
Let us see how to perform basic arithmetic operations like addition, subtraction, multiplication, and division on 2 Pandas Series.
For all the 4 operations we will follow the basic algorithm :
- Import the
Pandas
module. - Create 2 Pandas Series objects.
- Perform the required arithmetic operation using the respective arithmetic operator between the 2 Series and assign the result to another Series.
- Display the resultant Series.
Addition of 2 Series
# importing the module import pandas as pd # creating 2 Pandas Series series1 = pd.Series([ 1 , 2 , 3 , 4 , 5 ]) series2 = pd.Series([ 6 , 7 , 8 , 9 , 10 ]) # adding the 2 Series series3 = series1 + series2 # displaying the result print (series3) |
chevron_right
filter_none
Output :
Subtraction of 2 Series
# importing the module import pandas as pd # creating 2 Pandas Series series1 = pd.Series([ 1 , 2 , 3 , 4 , 5 ]) series2 = pd.Series([ 6 , 7 , 8 , 9 , 10 ]) # subtracting the 2 Series series3 = series1 - series2 # displaying the result print (series3) |
chevron_right
filter_none
Output :
Multiplication of 2 Series
# importing the module import pandas as pd # creating 2 Pandas Series series1 = pd.Series([ 1 , 2 , 3 , 4 , 5 ]) series2 = pd.Series([ 6 , 7 , 8 , 9 , 10 ]) # multiplying the 2 Series series3 = series1 * series2 # displaying the result print (series3) |
chevron_right
filter_none
Output :
Division of 2 Series
# importing the module import pandas as pd # creating 2 Pandas Series series1 = pd.Series([ 1 , 2 , 3 , 4 , 5 ]) series2 = pd.Series([ 6 , 7 , 8 , 9 , 10 ]) # dividing the 2 Series series3 = series1 / series2 # displaying the result print (series3) |
chevron_right
filter_none
Output :
Attention geek! Strengthen your foundations with the Python Programming Foundation Course and learn the basics.
To begin with, your interview preparations Enhance your Data Structures concepts with the Python DS Course.