Answers for "extract date month year from date column in python"

22

python year month from date

import datetime
date = '2021-05-21 11:22:03'
datem = datetime.datetime.strptime(date, "%Y-%m-%d %H:%M:%S")
print(datem.day)        # 25
print(datem.month)      # 5
print(datem.year)       # 2021
print(datem.hour)       # 11
print(datem.minute)     # 22
print(datem.second)     # 3
Posted by: Guest on May-21-2021
1

to extract out only year month from a date column in pandas

df['month_year'] = df['date_column'].dt.to_period('M')
Posted by: Guest on April-12-2021

Code answers related to "extract date month year from date column in python"

Python Answers by Framework

Browse Popular Code Answers by Language