Answers for "get the names of column of csv file python"

0

Column names reading csv file python

import pandas as pd
df = pd.read_csv('file.csv', names=['a', 'b', 'c'], header=None)
df.rename(columns = {'a':'A', 'b':'B', 'c':'C'}, inplace = True) 
df.to_csv('file.csv')
Posted by: Guest on October-30-2020

Code answers related to "get the names of column of csv file python"

Python Answers by Framework

Browse Popular Code Answers by Language