# sort() - the numpy ndarray object has a function which is called sort(), and this will sort a specified array. import numpy as np vd = np.array([3,2,0,1]) vd1 = np.sort(vd)[::-1] # this method is ...
# here we will find the LCM of the 2 numbers: # the answers of the above is 12 because the LCM of both numbers (4*3=12 and 6*2=12) # finding the LCM in array: import numpy as np vd = np.array([3,6,9]) ...
Some results have been hidden because they may be inaccessible to you
Show inaccessible results