analyze data of a .csv file and save into dataframe in python code example
Example 1: how to save a dataframe into an csv file
df.to_csv('file_name.csv', index=False)
Example 2: csv file in dataframe
import pandas as pddf = pd.read_csv ('file_name.csv')print(df)