Answers for "get date from month and year python"

6

how to get the calendar of current month in python

import calendar
import datetime
month = datetime.date.today().month
year = datetime.date.today().year
print (calendar.month(year,month))
Posted by: Guest on July-09-2021
8

python get day month year

import datetime
now = datetime.datetime.now()
print(now.year, now.month, now.day, now.hour, now.minute, now.second)
Posted by: Guest on May-12-2020

Code answers related to "get date from month and year python"

Python Answers by Framework

Browse Popular Code Answers by Language