📜  pandas 添加日期日期 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:10.597000             🧑  作者: Mango

代码示例1
# get the timestamp 5 days later the beginning one
from datetime import timedelta

pd.to_datetime('2020-11-28') + timedelta(days=5)

Timestamp('2020-12-05 00:00:00')