pandas.

#The .nlargest(n, columns) returns in descending order the n largest 
#values in the specified column in the dataframe
df.nlargest(10, 'Volume')
M.U