📜  从日期时间熊猫中提取年份 - Python 代码示例

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

代码示例4
#if the date format comes in datetime, we can also extract the day/month/year using the to_period function
#where 'D', 'M', 'Y' are inputs
df['month_year'] = pd.to_datetime(df['birth_date']).dt.to_period('M')
df.head()