Answers for "csv adding header"

1

how to add header in csv file in python

#header in csv file
import pandas as pd
import csv
df = pd.read_csv("file.csv", header=None)
df.to_csv("file.csv", header=["SEQUENCE"], index=False)#header added
df = pd.read_csv("file.csv")
df
Posted by: Guest on October-19-2020
0

how to add header in csv file in python

from pandas import read_csv

   df = read_csv('test.csv')
   df.columns = ['a', 'b']
   df.to_csv('test_2.csv')
Posted by: Guest on October-19-2020

Python Answers by Framework

Browse Popular Code Answers by Language