Match each code with its result.
Data types in NumPy
Specifying data types
Report a typo
Match the items from left and right columns
array = np.array([[6, 7],[8, 9]], dtype=np.int64)array = np.array([[6, 7],[8, 9]], dtype=np.str_)array = np.array([[6, 7],[8, 9]], dtype=np.float64)array = np.array([[6, 7],[8, 9]], dtype=np.bool_)[['6' '7'] ['8' '9']][[6 7] [8 9]][[ True True] [ True True]][[6. 7.] [8. 9.]] ___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.