Write a program to Create and print a dictionary
Topic: Write a program to Create and print a dictionary
Solution
thisdict = { "brand": "Ford", "model": "Mustang", "year": 1964 } print(f"Sample Dictionary:{thisdict}")
List all Python Programs
Solution
thisdict = { "brand": "Ford", "model": "Mustang", "year": 1964 } print(f"Sample Dictionary:{thisdict}")