简体   繁体   English

python csv到字典列

[英]python csv to dictionary columnwise

Is it possible to read data from a csv file into a dictionary, such that the first row of a column is the key and the remaining rows of that same column constitute the value as a list? 是否可以将csv文件中的数据读入字典,以便列的第一行是键,同一列的其余行构成列表值?

Eg I have a csv file 例如,我有一个csv文件

     strings, numbers, colors 
     string1, 1, blue
     string2, 2, red
     string3, 3, green
     string4, 4, yellow

using 运用

with open(file,'rU') as f: 
    reader = csv.DictReader(f)
    for row in reader:
        print row

I obtain 我知道了

{'color': 'blue', 'string': 'string1', 'number': '1'}
{'color': 'red', 'string': 'string2', 'number': '2'}
{'color': 'green', 'string': 'string3', 'number': '3'}
{'color': 'yellow', 'string': 'string4', 'number': '4'}

or using 或使用

 with open(file,'rU') as f: 
        reader = csv.reader(f)
        mydict = {rows[0]:rows[1:] for rows in reader}
        print(mydict)

I obtain the following dictionary 我获得以下字典

{'string3': ['3', 'green'], 'string4': ['4', 'yellow'], 'string2': ['2', 'red'], 'string': ['number', 'color'], 'string1': ['1', 'blue']}

However, I would like to obtain 但是,我想获得

{'strings': ['string1', 'string2', 'string3', 'string4'], 'numbers': [1, 2, 3,4], 'colors': ['red', 'blue', 'green', 'yellow']}

You need to parse the first row, create the columns, and then progress to the rest of the rows. 您需要解析第一行,创建列,然后前进到其余行。

For example: 例如:

columns = []
with open(file,'rU') as f: 
    reader = csv.reader(f)
    for row in reader:
        if columns:
            for i, value in enumerate(row):
                columns[i].append(value)
        else:
            # first row
            columns = [[value] for value in row]
# you now have a column-major 2D array of your file.
as_dict = {c[0] : c[1:] for c in columns}
print(as_dict)

output: 输出:

{
    ' numbers': [' 1', ' 2', ' 3', ' 4'], 
    ' colors ': [' blue', ' red', ' green', ' yellow'],
    'strings': ['string1', 'string2', 'string3', 'string4']
}

(some weird spaces, which were in your input "file". Remove spaces before/after commas, or use value.strip() if they're in your real input.) (一些奇怪的空格,在你的输入“文件”中。删除逗号之前/之后的空格,或者如果它们在你的真实输入中,则使用value.strip() 。)

This is why we have the defaultdict 这就是我们有defaultdict

from collections import defaultdict
from csv import DictReader

columnwise_table = defaultdict(list)
with open(file, 'rU') as f:
    reader = DictReader(f)
    for row in reader:
        for col, dat in row.items():
            columnwise_table[col].append(dat)
print columnwise_table

Yes it is possible: Try it this way: 是的,这是可能的:尝试这样:

import csv
from collections import defaultdict

D=defaultdict(list)
csvfile=open('filename.csv')
reader= csv.DictReader(csvfile)  # Dictreader uses the first row as dictionary keys
for l in reader:                 # each row is in the form {k1 : v1, ... kn : vn}
    for k,v in l.items():  
        D[k].append(v)       
...................
...................

Assuming filename.csv has some data like 假设filename.csv有一些像

strings,numbers,colors 
string1,1,blue
string2,2,red
string3,3,green
string4,4,yellow

then D will result in 然后D将导致

defaultdict(<class 'list'>, 
            {'numbers': ['1', '2', '3', '4'], 
             'strings': ['string1', 'string2', 'string3', 'string4'], 
             'colors':  ['blue', 'red', 'green', 'yellow']})

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM