Question: What will the following code display? dct = {'Monday':1, 'Tuesday':2, 'Wednesday':3} print(dct.get('Monday', 'Not found'))
What will the following code display?
dct = {'Monday':1, 'Tuesday':2, 'Wednesday':3}
print(dct.get('Monday', 'Not found'))
Step by Step Solution
3.37 Rating (147 Votes )
There are 3 Steps involved in it
The given code attempts to retrieve the value associated with the key Monday from t... View full answer
Get step-by-step solutions from verified subject matter experts
