如何在Python中仅用年月格式创建新列?

时间:2019-07-05 09:26:16

标签: python datetime python-datetime monthcalendar

问题是我有一个带有日期列的大CSV。 日期格式:2017-07-11 02:11:57

我需要创建一个仅以年和月为年-月的新列。

2017-07-11 02:11:57 -> 2017-07 

到目前为止,我已经尝试过:

df['year_of_date'] = df['Date'].dt.year
df['month_of_date'] = df['Date'].dt.month

很明显,我有2列,但不知道如何将它们连接起来并用'-'隔开。

0 个答案:

没有答案