Question: Question 2 What will be displayed after the following code executes? ( Note: the order of the display of entries in a dictionary are not

Question 2
What will be displayed after the following code executes? (Note: the order of the display of entries in a dictionary are not in a specific order.)
cities ={'GA' : 'Atlanta', 'NY' : 'Albany', 'CA' : 'San Diego'}
if 'CA' in cities:
del cities['CA']
cities['CA']= 'Sacramento'
print(cities)
{'CA': 'Sacramento'}
{'CA': 'Sacramento', 'NY': 'Albany', 'GA': 'Atlanta'}
['CA': 'Sacramento']
{'NY': 'Albany', 'GA': 'Atlanta'}Question 1
What does the get method do if the specified key is not found in the dictionary?
It returns a default value.
It throws an exception.
It does nothing.
You cannot use the get method to specify a key.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!