Horje
how to extract month from date in python Code Example
how to extract month from date in python
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




Python

Related
python hour from date Code Example python hour from date Code Example
python hour from datetime Code Example python hour from datetime Code Example
python year month from date Code Example python year month from date Code Example
python year from date Code Example python year from date Code Example
python month number from date Code Example python month number from date Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7