Specifying data types

Report a typo

Match each code with its result.

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.]]
___

Create a free account to access the full topic