Question: What will the following code display? dct = {0:[1, 2, [3, 4], 5]} print(dct[0][2][1])
What will the following code display?
dct = {0:[1, 2, [3, 4], 5]}
print(dct[0][2][1])
Step by Step Solution
3.32 Rating (152 Votes )
There are 3 Steps involved in it
The given code is a Python program that defines a dicti... View full answer
Get step-by-step solutions from verified subject matter experts
