题解 | #某店铺消费最多的前三名用户#
某店铺消费最多的前三名用户
https://www.nowcoder.com/practice/c177c9ad7ffd4503826f29d07ca71924
import pandas as pd df= pd.read_csv('sales.csv') sorted_df = df.sort_values(by='monetary',ascending=False,inplace=False,ignore_index=True)[:3] # 设置pandas显示配置,以显示完整的数据框 pd.set_option("display.width", 300) pd.set_option("display.max_rows", None) pd.set_option("display.max_columns", None) print(sorted_df)