Answers for "how to import csv pandas"

9

how to import csv in pandas

import pandas as pd

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

how to write csv from a dataframe pythin

df.to_csv('file_name.csv')
Posted by: Guest on July-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language