Quiz on NumPy ravel() Function



1. What does the ndarray.ravel() function do?
2. What will happen if the order parameter is not specified in the ravel() function?
3. Can the ravel() function return a view of the original array?
4. Which of the following is true about the ndarray.ravel() method?
5. What is the output of np.ravel([[1, 2], [3, 4]])?

Advertisements