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]
AnswerB.
[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