(4,3)
import numpy as np a = np.array([ [3, 1, 7],
[10, 4, 9, 2], [12, 3, 1],
[12, 11, 8] ]) print(a.shape) # expected: (4,3)
Setting up Python environment...