I need to find number of numerical and categorical columns
Check how many categorical and numerical columns are there
Categorical - object type
Numerical - int,float
Boolean - bool
df = pd.read_csv("titanic.csv")
as i can only get name of the columns with df._get_numeric_data().columns
i need sum of the columns