Answers for "get day of the month python"

2

python get current month

Use:

from datetime import datetime
today = datetime.today()
datem = datetime(today.year, today.month, 1)
I assume you want the first of the month.
Posted by: Guest on March-08-2021
1

how to get the year and month in python

import calander
ear = int(input("Input the year:- "))
Month = int(input("Input the month:- "))
print(calendar.month(y, m))
Posted by: Guest on July-27-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 day of the month python"

Python Answers by Framework

Browse Popular Code Answers by Language