Comment récupérer uniquement les colonnes à partir d'un datframe qui a un type de données particulier

# this will whow the columns of a dataframe which have datatype as int and float
df.select_dtypes(include=['int64', 'float64'])
Contended Cobra