I have a Data Frame with one column consisting of Names
When i access the names from the dataframe as
filename = frcl.iloc[[i]]
file = open(''+str(filename)+'.csv', 'w')
It creates CSV file with name with index and header in the CSV File Name
Eg; if i have Apple and Bat in Dataframe it creates csv file with 00Apple.csv and 01Bat.csv
how to take dataframe content with out index and header?