Question: BlockPy: #42.1) Nested Dictionaries Given the following dictionary representing this course, print out the first instructor and the title of the Day 2 assignment using
BlockPy: #42.1) Nested Dictionaries Given the following dictionary representing this course, print out the first instructor and the title of the Day 2 assignment using dictionary lookups and list indexing. Make sure to print out each of these on separate lines.
code given:
course = { "Instructors": ["Klaus", "Wrex"], "ID": { "Department": "CS", "Number": 1064 }, "Name": "Introduction to Python", "Assignments": { "Day 1": { "Points": 10, "Title": "Introduction" }, "Day 2":{ "Points": 5, "Title": "Installing Python" }, } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
