how to find out which column of data set is categorical features in python using panda code example
Example: display all categorical column in pandas dataframe
# get all categorical columns in the dataframe
catCols = [col for col in df.columns if df[col].dtype=="O"]