import numpy as np
nums = np.array([[5.54, 3.38, 7.99],
[3.54, 4.38, 6.99],
[1.54, 2.39, 9.29]])
print("Original array:")
print(nums)
print("\nSort the said array by row in ascending order:")
print(np.sort(nums))
print("\nSort the said array by column in ascending order:")
print(np.sort(nums, axis=0))
Sample Output:
Original array:
[[5.54 3.38 7.99]
[3.54 4.38 6.99]
[1.54 2.39 9.29]]
Sort the said array by row in ascending order:
[[3.38 5.54 7.99]
[3.54 4.38 6.99]
[1.54 2.39 9.29]]
Sort the said array by column in ascending order:
[[1.54 2.39 6.99]
[3.54 3.38 7.99]
[5.54 4.38 9.29]]
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer