From the churn dataframe, what is the average monthly charge paid by a customer for the services he/she has signed up for? For data science using Python in Anaconda - Jupyter

#import the library Pandas
import pandas as pd

#Put the churn.csv dataset on Root Directory

#Read the dataset 
churn = pd.read_csv('churn.csv')

#From the churn dataframe, what is the average monthly charge paid by a customer for the services he/she has signed up for?
churn.MonthlyCharges.mean()



Output:-
62.473481781376535