我有一个字典update_fields
,它有键/值对,其中值是另一个字典:
{datetime.date(2016, 12, 2): {'t1030': 0, 't1045': 0, 't0645': 0, 't1645': 0, 't0600': 0, 't1415': 0, 't1000': 0, 't1430': 0, 't0700': 0, 't1800': 0, 't1715': 0, 't1630': 0, 't1615': 0, 't1945': 0, 't1730': 0, 't1530': 0, 't1515': 0, 't0830': 0, 't0915': 0, 't1245': 0, 't1300': 0, 't1600': 0, 't1900': 0, 't2000': 0, 't2115': 0, 't0715': 0}, datetime.date(2016, 12, 1): {'t1030': 0, 't1045': 0, 't0645': 0, 't1645': 0, 't0600': 0, 't1415': 0, 't1000': 0, 't1430': 0, 't0700': 0, 't1800': 0, 't1715': 0, 't1630': 0, 't1615': 0, 't1945': 0, 't1730': 0, 't1530': 0, 't1515': 0, 't0830': 0, 't0915': 0, 't1245': 0, 't1300': 0, 't1600': 0, 't1900': 0, 't2000': 0, 't2115': 0, 't0715': 0}}
我想从每个键值创建另一个字典(或以某种方式按原样提取它),但是当我尝试这个时:
for update_date in update_fields:
timeslot_fields = {timeslot: value for (timeslot, value) in update_date.iteritems()}
我得到AttributeError: 'datetime.date' object has no attribute 'iteritems'
当我这样尝试时:
for update_date, values in update_fields:
timeslot_fields = {timeslot: value for (timeslot, value) in values.iteritems()}
我得到TypeError: 'datetime.date' object is not iterable
我可能做错了什么?它可能与外部字典键是日期时间有关吗?无论我尝试什么,我似乎都无法突破密钥并获取其价值。
答案 0 :(得分:1)
这是因为你试图迭代密钥。
for update_date in update_fields:
items = update_fields[update_date].items()
timeslot_fields = {timeslot: value for (timeslot, value) in items}
答案 1 :(得分:1)
当您在Python中迭代字典时,默认情况下,迭代键。如果您想迭代值,请尝试update_fields.values()
或update_fields.itervalues()
for update_date in update_fields.itervalues():
timeslot_fields = {timeslot: value for (timeslot, value) in update_date.iteritems()}
如果你想迭代项目,你应该使用update_fields.items()
或update_fields.iteritems()
for update_date, values in update_fields.iteritems():
timeslot_fields = {timeslot: value for (timeslot, value) in values.iteritems()}
答案 2 :(得分:1)
将update_date.iteritems()
更改为update_fields[update_date].iteritems()
,
for update_date in update_fields:
timeslot_fields = {timeslot: value for (timeslot, value) in update_fields[update_date].iteritems()}