Question: Dictionary state _ dict contains multiple state code and state name pairs. Read strings from _ state and to _ state from input, representing the

Dictionary state_dict contains multiple state code and state name pairs. Read strings from_state and to_state from input, representing the codes of a trip's starting and ending states. Use state_dict to access the corresponding state name of each string. Then, output the starting state name, followed by ' to ' and the ending state name.
Click here for example
state_dict
'ME': 'Maine', 'WA': 'Washington', 'MN': 'Minnesota', 'NM': 'New Mexico',
'DE': 'Delaware', 'NV': 'Nevada', 'TX': 'Texas', 'AK': 'Alaska',
'AR': 'Arkansas'
}
from_state = input ()
to_state = input ()
state_dict =
print(from_state, 'to', to_state)
11
 Dictionary state_dict contains multiple state code and state name pairs. Read

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 Databases Questions!