Which Of The Following Matrices Will Throw An Error In Python #444
Which of the following matrices will throw an error in Python?
This multiple choice question (MCQ) is related to the book/course gs gs109 Python. It can also be found in gs gs109 List Comprehension - Python Matrix List Comprehension - Quiz No.1.
Which of the following matrices will throw an error in Python?
A = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
B = [[3, 3, 3] [4, 4, 4] [5, 5, 5]]
C = [(1, 2, 4), (5, 6, 7), (8, 9, 10)]
D = [2, 3, 4, 3, 3, 3, 4, 5, 6]