Vidyalelo
Python · Q43

Python Lists MCQs: Exam Practice for List Concepts

Programming · Python · question 43

Q43

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

A.
Address of the zip object
Answer
B.
Address of the matrices A and B
C.
No output
D.
[3, 6, 9, 16, 20, 24, 35, 40, 45]

Answer: Option A

Solution

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