how to get current year first month and day in python code example
Example 1: python get day month year
import datetime
now = datetime.datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
Example 2: first day of the month python
from datetime import datetime
datetime.today().replace(day=1)