Jak odwołać się do wszystkich kolumn w pandy
#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