Files
30-seconds-of-code/snippets/dict_to_list.md
Isabelle Viktoria Maciohsek 0ab4b3dbc5 Update snippet descriptions
2020-11-02 19:27:53 +02:00

403 B

title, tags
title tags
dict_to_list dictionary,list,intermediate

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)]