标签: python python-3.x dictionary
我如何打印出这样的字典列表?:
package_version
我希望左列是名称,右列是每种名称的颜色。
这是我的代码:
Tino Black Alex Blue Meow Red Woof White
答案 0 :(得分:2)
您可以这样做,例如:
for name, color in colourList.items(): # this is actually a colourDictionary print(name, color)