pandas.Timestamp.date#
- Timestamp.date()#
返回具有相同年、月和日的 datetime.date。
此方法从 Timestamp 中提取日期部分,并将其作为 datetime.date 对象返回,丢弃时间信息。
- 返回:
- datetime.date
Timestamp 的日期部分。
参见
时间戳
表示一个单一的时间戳,类似于 datetime。
datetime.datetime.date
从 datetime 对象中提取日期组件。
例子
从时间戳中提取日期:
>>> ts = pd.Timestamp('2023-01-01 10:00:00.00') >>> ts Timestamp('2023-01-01 10:00:00') >>> ts.date() datetime.date(2023, 1, 1)