pandas.Series.at_time # 系列。at_time ( time , asof = False , axis = None ) [来源] # 选择一天中特定时间的值(例如上午 9:30)。 参数: 时间datetime.time 或 str要选择的值。 轴{0 或 'index', 1 或 'columns'}, 默认 0对于系列,此参数未使用,默认为 0。 返回: 系列或数据框 加薪: 类型错误如果索引不是DatetimeIndex 也可以看看 between_time选择一天中特定时间之间的值。 first根据日期偏移选择时间序列的初始周期。 last根据日期偏移选择时间序列的最终周期。 DatetimeIndex.indexer_at_time仅获取一天中特定时间值的索引位置。 例子 >>> i = pd.date_range('2018-04-09', periods=4, freq='12h') >>> ts = pd.DataFrame({'A': [1, 2, 3, 4]}, index=i) >>> ts A 2018-04-09 00:00:00 1 2018-04-09 12:00:00 2 2018-04-10 00:00:00 3 2018-04-10 12:00:00 4 >>> ts.at_time('12:00') A 2018-04-09 12:00:00 2 2018-04-10 12:00:00 4