Login
Remember
Register
Ask a Question
what is the use sort() function ?
+1
vote
asked
Jul 9, 2021
in
NumPy
by
rajeshsharma
what is the use sort() function ?
sort-function
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 9, 2021
by
rajeshsharma
num_arr = np.array([[5,6,2],[9,8,1]])
print(ā\n sorting of numpy array : \nā,np.sort(num_arr))
...