Hot Student Stories
Given that d refers to a dictionary, change the value mapped to by the key 'Monty' to 'Python'. Write in Python
1 answer
Add you answer
Wanna comment?
Please Sign In / Sign Up
>>> d = {}>>> d[ "Monty" ] = "Python">>> d{'Monty': 'Python'}