def dict_to_str(d):
""" (dict) -> str
Return a str containing each key and value in d. Keys and values are
separated by a space. Each key-value pair is separated by a comma.
>>> dict_to_str({3: 4, 5: 6})
'3 4,5 6'
"""
我将如何编写这个函数的主体?
到目前为止,我有以下内容:
for values in d.values():
print(values)
for items in dict.keys(d):
print(items)
但我不知道我会怎么做,所以它以正确的格式出现。我想让每个值/项目成为一个列表,所以我可以协调例如 value[0] 和 item[0]、value[1] 和 item[1] 等等