w3resource

Python Exercise: Converting a list of tuples into a dictionary

Python tuple: Exercise-19 with Solution

Write a Python program to convert a list of tuples into a dictionary.

Sample Solution:

Python Code:

# Create a list of tuples where each tuple contains two elements, a character and a number.
l = [("x", 1), ("x", 2), ("x", 3), ("y", 1), ("y", 2), ("z", 1)]

# Create an empty dictionary to store the results.
d = {}

# Iterate through each tuple (a, b) in the list 'l'.
for a, b in l:
    # Use 'setdefault' to create an empty list in the dictionary 'd' for the key 'a' if it doesn't exist.
    # Then, append the value 'b' to the list associated with key 'a'.
    d.setdefault(a, []).append(b)

# Print the resulting dictionary, where keys represent characters, and values are lists of corresponding numbers.
print(d) 

Sample Output:

{'x': [1, 2, 3], 'y': [1, 2], 'z': [1]}

Flowchart:

Flowchart: Converting a list of tuples into a dictionary

Python Code Editor:

Previous: Write a Python program to reverse a tuple.
Next: Write a Python program to print a tuple with string formatting.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://198.211.115.131/python-exercises/tuple/python-tuple-exercise-19.php