Files
30-seconds-of-code/snippets/dict_to_list.md
2022-03-22 12:32:56 +02:00

510 B

title, tags, expertise, author, firstSeen, lastUpdated
title tags expertise author firstSeen lastUpdated
Dictionary to list dictionary,list intermediate maciv 2020-10-16T21:24:14+03:00 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)]