标签: python-3.x dictionary
如果我有这样的内容:
dic = {"hi": 5, "test": {"apple": 2, "orange": 3}, "sa": "ok"}
我希望我的输出像这样:
[("hi", 5), ("apple", 2), ("orange": 3), ("sa", "ok")]
,每个键和值彼此相邻。我忽略了最终输出中的“测试”键,因为它的值是字典。