Write a program that uses delete function on Dictionary
Topic: Write a program that uses delete function on Dictionary
Solution
Dict = { 5 : 'Welcome', 6 : 'To', 7 : 'Geeks', 'A' : {1 : 'Geeks', 2 : 'For', 3 : 'Geeks'}, 'B' : {1 : 'Geeks', 2 : 'Life'}} print("Initial Dictionary: ") print(Dict) del Dict[6] print("\nDeleting a specific key: ") print(Dict) del Dict['A'][2] print("\nDeleting a key from Nested Dictionary: ") print(Dict)
List all Python Programs