我定义了一个名为DictList
的类。 DictList
类表示字典列表,其中一些键出现在一个以上的字典中,它具有一个参数:它匹配一个或多个参数(必须为字典)。
class DictList:
def __init__(self,*args):
self.n = args
喜欢 :
A = DictList({'a':1, 'b':2, 'c':3}, {'c':5, 'd':7, 'e':16}, {'e':25, 'f':29)
现在,我想在此类中定义一个add方法。它将添加两个DictList或添加一个DictList和一个字典。
例:
>>> A1 = DictList(dict(a=1,b=2), dict(b=12,c=13))
>>> A2 = DictList(dict(a='hi',b='hello'), dict(b='good',c='nice'))
>>> A1+A2
DictList({'a': 1, 'b': 2}, {'b': 12, 'c': 13}, {'a': 'hi', 'b': 'hello'}, {'b': 'good', 'c': 'nice'})
>>> A2 + A1
DictList( {'a': 'hi', 'b': 'hello'}, {'b': good', 'c': 'nice'},{'a': 1, 'b': 2}, {'b': 12, 'c': 13})
我的想法是用字典列表创建一个新的DictList,该字典列表包含两个DictList中的所有字典或一个DictList和一个字典。
def __add__(self,new):
if type(new) == DictList:
print(DictList( all dicts from self and new ))
if type(new) == dict:
print(DictList(all dicts from self and new))
但是我不知道如何在两个DictList中获取每个字典并将它们全部放入新的DictList中,该怎么办?
最佳答案
返回带有连接的DictList
参数列表的新self.n
。如果您也想添加常规词典,请检查实例的类型。您可能需要定义__radd__
来处理dict + DictList
而不是仅DictList + dict
。
class DictList:
def __init__(self,*args):
self.n = args
def __add__(self,new):
L = list(self.n)
if isinstance(new,DictList):
L.extend(new.n)
elif isinstance(new,dict):
L.append(new)
else:
raise TypeError('Must be instance of DictList or dict')
return DictList(*L)
def __radd__(self,new):
return self.__add__(new)
def __repr__(self):
return 'DictList'+repr(self.n)
演示:
>>> d = DictList(dict(a=1,b=2,c=3),dict(a=2,b=3,e=4))
>>> e = DictList(dict(a=4,c=2,e=3))
>>> d+e
DictList({'b': 2, 'c': 3, 'a': 1}, {'b': 3, 'a': 2, 'e': 4}, {'c': 2, 'a': 4, 'e': 3})
>>> d+dict(x=1,y=2)
DictList({'b': 2, 'c': 3, 'a': 1}, {'b': 3, 'a': 2, 'e': 4}, {'x': 1, 'y': 2})
>>> dict(x=1,y=2)+d
DictList({'b': 2, 'c': 3, 'a': 1}, {'b': 3, 'a': 2, 'e': 4}, {'x': 1, 'y': 2})
>>> d+5
Traceback (most recent call last):
File "<interactive input>", line 1, in <module>
File "C:\Users\metolone\Desktop\x.py", line 12, in __add__
raise TypeError('Must be instance of DictList or dict')
TypeError: Must be instance of DictList or dict