pandas.Timestamp.combine # 类方法 时间戳。合并(日期,时间)# 将日期、时间合并为具有相同日期和时间字段的日期时间。 例子 >>> from datetime import date, time >>> pd.Timestamp.combine(date(2020, 3, 14), time(15, 30, 15)) Timestamp('2020-03-14 15:30:15')