InterviewSolution
Saved Bookmarks
| 1. |
Question 21: Find the output of the following program:L1 = []L1.append([1, [2, 3], 4])L1.extend([7, 8, 9])print(L1[0][1][1] + L1[2])(A) Type Error(B) 12(C) 11(D) 38 |
| Answer» | |