>>> ddict = {}.fromkeys(('x','y'),-1)>>> ddict{'y': -1, 'x': -1}>>> edict = {}.fromkeys(('foo','bar')) >>> edict{'foo': None, 'bar': None}>>>