Exercises rating:
★☆☆ - You should be able to do it based on Python knowledge plus the text.
★★☆ - You will need to do extra thinking and some extra reading/searching.
★★★ - The answer is difficult to find by a simple search, requires you to do a considerable amount of extra work by yourself (feel free to ignore these exercises if you're short on time).
np
(★☆☆)¶
x = np.array([[3, 7],
[7, 3],
[1, 2]])
x = np.arange(32).reshape(4, 8)
argsort
to sort the following array (★★☆)¶x = np.array([2, 7, 42, 27, 6, 9, 12])
x = np.arange(-6, 58, 2).reshape(4, 8)
x = np.arange(32).reshape(4, 8)