In the churn dataframe, under the variable Dependents how many records have “1@#" ? 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')

#In the churn dataframe, under the variable Dependents how many records have “1@#" ?
pd.crosstab(index=churn.Dependents, columns="count")


Output:-