Answers for "import csv into dataframe"

9

how to import csv in pandas

import pandas as pd

df = pd.read_csv (r'Path where the CSV file is stored\File name.csv')
print (df)
Posted by: Guest on April-15-2020
3

how to save a dataframe into an csv file

df.to_csv('file_name.csv', index=False)
Posted by: Guest on September-16-2020

Python Answers by Framework

Browse Popular Code Answers by Language