Write a Python program to convert a tuple to a dictionary.
Topic: Write a Python program to convert a tuple to a dictionary.
Solution
tuplex = ((2, "w"),(3, "r")) print(dict((y, x) for x, y in tuplex))
List all Python Programs
Solution
tuplex = ((2, "w"),(3, "r")) print(dict((y, x) for x, y in tuplex))