Relative Content

Tag Archive for pythonlistdictionarytuples

A list of tuples from dictionary where values are lists

I need to convert a dictionary in a form {1: [‘a’, ‘b’, ‘c’, ‘d’], 2: [‘e’, ‘f’, ‘g’, ‘h’]} to a list of tuples in a form [(1, ‘a’, ‘b’, ‘c’, ‘d’), (2, ‘e’, ‘f’, ‘g’, ‘h’)]