How to convert the columns from a csvfile into an orderedDict python

烂漫一生 提交于 2019-12-13 09:14:08

问题


I have a csv file and i need the columns to be printed as OrderedDict

I am able to convert the rows into an ordereddict using collections.OrderedDict((row[0], row[1:]) for row in r) in python (2.7.5)

But when i try the same for columns i am getting 'cannot unpack more than one value' error.

Is there any workaround?

        fileLocation = 'C:/test.csv'
        with open(fileLocation,'rb') as f:
            r = csv.reader(f)
            od = collections.OrderedDict((row[0], row[1:]) for row in r)
        print od

回答1:


try using this

od = collections.OrderedDict((row[0], row[1:]) for row in r if len(row)>1)

this might be you have row with only one column



来源:https://stackoverflow.com/questions/25761701/how-to-convert-the-columns-from-a-csvfile-into-an-ordereddict-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!