Question: Given the dictionary: myDictionary = { ' Jane ' : 6 0 , 'Jack': 8 , 'Scott': 2 2 , 'Kevin': 3 2 } Which

Given the dictionary:
myDictionary ={'Jane': 60, 'Jack': 8, 'Scott': 22, 'Kevin': 32}
Which print statement will print out the value for the key Kevin?
print(myDictionary('Kevin'))
print(myDictionary[32])
print(myDictionary['Kevin'])
print(myDictionary[Kevin])
 Given the dictionary: myDictionary ={'Jane': 60, 'Jack': 8, 'Scott': 22, 'Kevin':

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!