📜  如何在python中一起打印字典的键和值? - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:30.957000             🧑  作者: Mango

代码示例1
for i in d:
    print i, d[i]