蓝绝

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

 

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

#获取指定区域的数据
import pandas as pd 
pd.set_option('display.unicode.east_asian_width',True) # 规整格式
df=pd.read_excel('msb课程销售记录.xlsx')
#df.head()
df=df[['订单付款时间','会员名','实际支付金额','联系手机','学员姓名']]
df=df.sort_values(by=['订单付款时间'])
#将日期设置为索引
df=df.set_index('订单付款时间')
#df.['2020']#求2020年数据
#df.['2020-05'] #查看2020-05月数据
#df['2020-05-25':'2020-05-25'] #查看2020-05-25日的数据
df['2020-06-01':'2020-06-30']

 

posted on 2022-11-27 09:48  蓝绝  阅读(41)  评论(0编辑  收藏  举报