Vidyalelo
Python · Q113

Python Lists MCQs: Exam Practice for List Concepts

Programming · Python · question 113

Q113

What will be the output of the following Python code? A = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] A[1]

A.
[4, 5, 6]
Answer
B.
[3, 6, 9]
C.
[1, 4, 7]
D.
[1, 2, 3]

Answer: Option A

Solution

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