如何在不带方括号和撇号的新行中打印出字典列表

时间:2019-08-15 12:01:07

标签: python python-3.x dictionary

我如何打印出这样的字典列表?:

package_version

我希望左列是名称,右列是每种名称的颜色。

这是我的代码:

Tino Black
Alex Blue
Meow Red
Woof White

1 个答案:

答案 0 :(得分:2)

您可以这样做,例如:

for name, color in colourList.items(): # this is actually a colourDictionary
    print(name, color)