What will be the output of this code?
import numpy as np arr = np.array([[1, 2], [3, 4]]) print(arr.shape)
(2, 2)
(1, 4)
(4, )
(2, 1)
This question is part of this quiz :