蓝绝

博客园 首页 新随笔 联系 订阅 管理

 

#按某列降序排序
import pandas as pd 
pd.set_option('display.unicode.east_asian_width',True) # 规整格式
df=pd.read_excel('电脑配件销售记录.xlsx') 
print(df.head())   #head() 显示前五行
#排序
df=df.sort_values(by='成交金额',ascending=False) #降序排序 ascending
print(df.head())
#按多列降序排序
import pandas as pd 
pd.set_option('display.unicode.east_asian_width',True) # 规整格式
df=pd.read_excel('电脑配件销售记录.xlsx') 
print(df.head())   #head() 显示前五行

#根据多列进行排序,数量和成交价,数量相同的情况下,成交金额降序
df=df.sort_values(by=['数量','成交金额'],ascending=False)
print(df)

  

posted on 2022-11-19 19:37  蓝绝  阅读(15)  评论(0编辑  收藏  举报