Menu

gitpiper

dict_to_list python Code Snippet in 2024

dictionarylistintermediate

Last Updated: 20 April 2024

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

python snippet similar to dict_to_list For You in April 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️