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 = [[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
B. Address of the matrices A and B
C. No output
D. [3, 6, 9, 16, 20, 24, 35, 40, 45]
Answer: Option A
Join The Discussion