没有括号和逗号的字典格式

dictionary format without brackets and comma

我有字典:

{'Спартак': [2, 0, 1, 1, 1], 'Зенит': [2, 0, 1, 1, 1], 'Локомотив': [2, 2, 0, 0, 6]}

我需要像这样的打印格式:

Спартак:2 0 1 1 1

我试试这个:

for key, value in commands_dict.items():
print("{0}:{1}".format(key, value))

还有这个return screen,但这不是我需要的

谢谢您的回答!

尝试:

for key, value in commands_dict.items():
    print("{0}:{1}".format(key, ",".join(map(str,value))))

注:

  • map 将每个整数转换为字符串
  • join 以逗号作为分隔符连接字符串