Files
30-seconds-of-code/snippets/python/s/dict-to-list.md
2023-05-07 16:07:29 +03:00

485 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Dictionary to list snippet python
dictionary
list
new-york 2020-11-02T19:27:53+02:00

Converts a dictionary to a list of tuples.

  • Use dict.items() and list() to get a list of tuples from the given dictionary.
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)]