Answers for "how to find day of a date in python"

3

python date get day

import datetime
dt = datetime.datetime.today()
year = dt.year
month = dt.month
day = dt.day
Posted by: Guest on December-18-2020
3

datetimes to day of year python

>>> import datetime
>>> today = datetime.datetime.now()
>>> print today
2009-03-06 15:37:02.484000
>>> today.strftime('%j')
'065'
Posted by: Guest on April-16-2020

Code answers related to "how to find day of a date in python"

Python Answers by Framework

Browse Popular Code Answers by Language