| Saint Louis University | 
    Computer Science 1300 | Dept. of Math & Computer Science | 
Topic:  Dictionaries
Related Reading:  Chapter 12
Due:
11:00am, Friday, 28 April 2017
Please make sure you adhere to the policies on academic integrity.
Exericse 12.3
In class, we demonstrated use of the method dict.setdefault method. Demonstrate your understanding by giving a snippet of code with logic that is equivalent to the following:
val = capital.setdefault('CA','Springfield')
presuming that capital is a dictionary. You are not allowed to use the setdefault method in your answer.
	
    Exericse 12.4
Exercise 12.6