Comment se référer à toutes les colonnes de Pandas

#to refer to all columns at once like getting minimum of all columns  
data = df[:].min()

#to get info of all columns
data = df[:]
Sad Santa