字典转列表

将字典转换为元组列表。

  • 使用dict.items()list()从给定的字典中获取一个元组列表。
def dict_to_list(d):
  return list(d.items())

d = {'one': 1, 'three': 3, 'five': 5, 'two': 2, 'four': 4}
dict_to_list(d)
# [('one', 1), ('three', 3), ('five', 5), ('two', 2), ('four', 4)]