import pandas pd # to use it's read_csv funtion to read the data set import os # to use it's chdir function set working direction df=pd.read_csv('winequality-white.csv', sep=";") # reading and storing the winequality-white data as df #summary statistics of the data set d=df.describe() # using the describe function to find summary statistics d dpath=os.path.abspath(os.pardir)+"\\Results\Description.csv" #setting a path to save ouput as Description d.to_csv(dpath) # saving output as csv