Q. What is the output of the below code?
Code:
import numpy as np arr=np.array([[1,2,3]]) arr.shape
β
Correct Answer: (C)
(1, 3)
import numpy as np arr=np.array([[1,2,3]]) arr.shape
You must be Logged in to update hint/solution