I'm trying to write the data from my list to just column 4
namelist = ['PEAR']
for name in namelist:
    for man_year in yearlist:
        for man_month in monthlist:
            with open('{2}\{0}\{1}.csv'.format(man_year,man_month,name),'w') as filename:
                writer = csv.writer(filename)
                writer.writerow(name)
                time.sleep(0.01)
it outputs to a csv like this
P             E                 A                R
4015854     234342            2442343            234242
How can I get it to go on just the 4th column?
                                                        PEAR
4015854     234342                2442343              234242
 
     
     
    