# This is tested on Jupytor Notebook.
# Note: Ensure the data frame name is df which is loaded into your python notebook.
# Importing the packages
import pandas as pd
# Write to file
def write_file(df):
df.to_csv('df_results.csv',index = False)
# Calling the method
df = write_file(df)
# This write the results of df into file name df_results.csv
# Note: Ensure the data frame name is df which is loaded into your python notebook.
# Importing the packages
import pandas as pd
# Write to file
def write_file(df):
df.to_csv('df_results.csv',index = False)
# Calling the method
df = write_file(df)
# This write the results of df into file name df_results.csv