Run
my_dict = { 'foo':12, 'bar':14 } converted_list = [(key, 2*value) for key, value in my_dict.items()] print(converted_list)
Output