Vidyalelo
Python · Q122

Python Lists MCQs: Exam Practice for List Concepts

Programming · Python · question 122

Q122

What will be the output of the following Python code? data = [[[1, 2], [3, 4]], [[5, 6], [7, 8]]] print(data[1][0][0])

A.
1
B.
2
C.
4
D.
5
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board