In this python pandas program, we will multiply two series using pandas.
Steps to solve the program
- Import pandas library as pd.
- Create two series using pd.Series().
- Now multiply the two series using the ” * ” operator.
- Print the output.
import pandas as pd
df1 = pd.Series([1,6,9,5])
df2 = pd.Series([5,2,4,5])
print(df1*df2)
Output :
0 5
1 12
2 36
3 25
dtype: int64