How does Python3 pandas read the first line of a csv file

how pandas reads the header of csv files
how to read the fcode,fdate,NAV,ACCNAV,DGR,pstate,rstate

fcode,fdate,NAV,ACCNAV,DGR,pstate,rstate
001112,2016-01-20,"0.9040 ",0.9040,-2.06%,,
001112,2016-01-19,"0.9230",0.9230,2.67%,,
001112,2016-01-18,"0.8990 ",0.8990,0.45%,,
001112,2016-01-15,"0.8950 ",0.8950,-3.03%,,
001112,2016-01-14,"0.9230 ",0.9230,1.99%,,
001112,2016-01-13,"0.9050 ",0.9050,-2.58%,,
001112,2016-01-12,"0.9290 ",0.9290,0.76%,,
001112,2016-01-11,"0.9220 ",0.9220,-4.26%,,
001112,2016-01-08,"0.9630 ",0.9630,1.69%,,
001112,2016-01-07,"0.9470 ",0.9470,-7.25%,,
001112,2016-01-06,"1.0210 ",1.0210,1.49%,,
001112,2016-01-05,"1.0060 ",1.0060,1.21%,,
001112,2016-01-04,"0.9940 ",0.9940,-6.75%,,
001112,2015-12-31,"1.0660 ",1.0660,-0.37%,,
001112,2015-12-30,"1.0700 ",1.0700,0.38%,,
001112,2015-12-29,"1.0660 ",1.0660,0.66%,,
001112,2015-12-28,"1.0590 ",1.0590,-1.76%,,
001112,2015-12-25,"1.0780 ",1.0780,0.19%,,
001112,2015-12-24,"1.0760 ",1.0760,-0.74%,,
001112,2015-12-23,"1.0840 ",1.0840,-0.64%,,
001112,2017-03-16,"1.1300 ",1.1300,0.36%,,
001112,2017-03-15,"1.1260 ",1.1260,0.09%,,
001112,2017-03-14,"1.1250 ",1.1250,-0.09%,,
001112,2017-03-13,"1.1260 ",1.1260,0.81%,,
001112,2017-03-10,"1.1170 ",1.1170,0.72%,,
Apr.13,2021

import pandas as pd


data = pd.read_csv('data.csv', nrows=0)
print(data.columns)
Menu