This Python DateTime tutorial will teach you how to get month from DateTime. You can find the month from DateTime using the following code:
# Import the datetime module
import datetime
# Get the current date and time
date_time = datetime.datetime.now()
# Get the month from the date and time
month = date_time.month
# Display the month
print("Current month:", str(month))

