×
×
Correct!
Insert the correct argument to specify that the array should be of type STRING.
arr = np.array([1, 2, 3, 4], @(9))
arr = np.array([1, 2, 3, 4], dtype='S')
arr = np.array([1, 2, 3, 4], dtype="S")
arr = np.array([1, 2, 3, 4], dtype = "S")
arr = np.array([1, 2, 3, 4], dtype = 'S')
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 23 exercises.
Are you sure you want to continue?