Hacker Timesnew | past | comments | ask | show | jobs | submitlogin

Really looking for a nice little web editor for editing a .csv config

But thx anyway :)



    import csv
    file = csv.reader(open('config.csv'), delimiter='\t')
    for row in file:
        for cell in row:
            # do something with the cell


im more of a

csv.DictReader(open('config.csv'), delimiter=",")

guy myself, but thx anyway :)




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: