Menu
×
×
Correct!
Exercise:Insert the correct syntax for printing the number 50 from the array.
arr = np.array([10, 20, 30, 40, 50])
print(arr@(4))
arr = np.array([10, 20, 30, 40, 50])
print(arr[4] )
arr = np.array([10, 20, 30, 40, 50])
print(arr[-1])
arr = np.array([10, 20, 30, 40, 50])
print(arr[4])
Not CorrectClick here to try again. Correct!Next ❯ |