Python解压缩嵌套字典并将键和值存储在元组中

时间:2018-09-14 22:52:06

标签: python-3.x dictionary

如果我有这样的内容:

dic = {"hi": 5, "test": {"apple": 2, "orange": 3}, "sa": "ok"}

我希望我的输出像这样:

[("hi", 5), ("apple", 2), ("orange": 3), ("sa", "ok")]

,每个键和值彼此相邻。我忽略了最终输出中的“测试”键,因为它的值是字典。

0 个答案:

没有答案