Menu
×
×
Correct!
Exercise:Use the correct NumPy syntax to check the shape of an array.
arr = np.array([1, 2, 3, 4, 5])
print(arr.@(5))
arr = np.array([1, 2, 3, 4, 5])
print(arr.shape)
Not CorrectClick here to try again. Correct!Next ❯ |