删除dicts列表中dicts列表的键
我在DICES列表中有一个dicts列表,我想删除options
,该是问题
中字典列表的一部分。到目前为止,我还找不到解决方案,这是最好的方法?
[{'id': 1,
'type': 'FIXED',
'questions': [
{'id': 79401,
'options': {'labels': {'left': 'No',
'right': 'Yes'}}}],
{'id': 2,
'type': 'MULTI',
'questions': [
{'id': 79402,
'options': {'randomize': 'none',
'captionText': '...'}}]}]
I have a list of dicts within a list of dicts and I would like to delete the key options
that is part of the list of dictionaries in questions
. I haven't been able to find a solution so far, what would be the best way to do this?
[{'id': 1,
'type': 'FIXED',
'questions': [
{'id': 79401,
'options': {'labels': {'left': 'No',
'right': 'Yes'}}}],
{'id': 2,
'type': 'MULTI',
'questions': [
{'id': 79402,
'options': {'randomize': 'none',
'captionText': '...'}}]}]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在嵌套列表上迭代循环的嵌套
,然后您可以
del
要删除的密钥:Iterate over the nested lists with a nested
for
loop, and then you candel
the key you want to delete: