将多个词典添加到python词典中的键

时间:2014-06-26 20:30:21

标签: python dictionary

我正在尝试将多个词典添加到密钥中。 e.g。

value = { column1 : {entry1 : val1}
                    {entry2 : val2}

          column2 : {entry3 : val3}
                    {entry4 : val4}
}

我正在尝试使用此代码完成的是: 有一个file.txt,它包含该标题的列和有效条目。我正在尝试创建一个以列为键的字典,并为每个列创建另一个有效条目的字典。 所以我逐行解析文本文件以找到列和条目的模式并将其存储在变量中,检查字段中是否已存在列(这是一个键),如果存在则将另一个字典添加到列中,如果没有创建新条目。我希望这是有道理的。

file.txt

的示例内容
blah blah Column1 blah blah
    entry1 val1
    entry2 val2
blah blah Column2 blah blah
    entry3 val3
    entry4 val4

我的代码:

from __future__ import unicode_literals
import os, re, string, gzip, fnmatch, io
from array import *

header = re.compile(...) #some regex
valid_entries = re.compile(---) #some regex

matches=[]
entries=[]
value = {'MONTH OF INTERVIEW' : {'01': 'MIN VALUE'}}
counter = 0
name = ''

f =open(r'C:/file.txt')

def exists(data, name):
    for key in data.keys():
        if key == name :
            print "existing key : " + name
            return True
        else :
            return False
for line in f:

    col = ''
    ent = ''
    line = re.sub(ur'\u2013', '-', line)
    line = re.sub(ur'\u2026', '_', line)
    m = header.match(line)
    v = valid_entries.match(line)

    if m:
        name= ''
        matches.append(m.groups())
        _,_, name,_,_= m.groups()
        #print "name : " + name

    if v:
        entries.append(v.groups())
        ent,col= v.groups()
        #print v.groups()
        #print "col :" + col
        #print "ent :" + ent

    if (name is not None) and (ent is not None) and (col is not None):
        print value
        if exists(value, name):
            print 'inside existing loop'
            value[name].update({ent:col})
        else:
            value.update({name:{ent:col}})

print value

这段代码的问题是,它正在替换子字典的值,也没有将所有值都添加到字典中。

我是python的新手,所以这可能是一种处理这种情况的天真方法。如果您认为有更好的方式来获得我想要的东西,如果您告诉我,我将非常感激。

3 个答案:

答案 0 :(得分:2)

字典每个键只有一个值。诀窍是将该值设置为容器,如列表:

value = {
    'column1': [{entry1 : val1}, {entry2 : val2}]
    'column2': [{entry3 : val3}, {entry4 : val4}]
}

当没有值时,使用dict.setdefault()插入列表值:

if name is not None and ent is not None and col is not None:
    value.setdefault(name, []).append({ent: col})

您可以在此处创建包含多个(ent, col)键值对的值 one 字典:

if name is not None and ent is not None and col is not None:
    value.setdefault(name, {})[ent] = col

您的exists()功能过于复杂,任务词典擅长;使用in代替测试密钥:

if name in value:

就足够了。

答案 1 :(得分:0)

我会将密钥保存为字典列表,因此您可以extendappend

>>> d = {}
>>> d[1] = [{'a': 1}]
>>> d[1].append({'b':2})
>>> d
{1: [{'a': 1}, {'b': 2}]}

答案 2 :(得分:0)

您可以使用defaultdictregexdemo here):

with open('/path/to/file.txt', 'rU') as f:     # read the contents from the file
    lines = f.readlines()

import re
from collections import defaultdict
d = defaultdict(list)                          # dict with default value: []

lastKey = None
for line in lines:
    m = re.search('Column\d',line)             # search the current line for a key
    if m: lastKey = m.group()
    else:
        m = re.search('(?<=entry\d ).*',line)  # search the current line for a value
        if m: d[lastKey].append(m.group())     # append the value

<强>输出:

[('Column1', ['val1', 'val2']), ('Column2', ['val3', 'val4'])]

注意:当然,上面的代码假设您的file.txt格式如您的示例所示。对于真正的file.txt数据,您可能需要调整正则表达式。