Answers for "how to calculate days to year in python"

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
0

python get number of days

from datetime import date

d0 = date(2008, 8, 18)
d1 = date(2008, 9, 26)
delta = d1 - d0
print(delta.days)
Posted by: Guest on February-24-2021

Code answers related to "how to calculate days to year in python"

Python Answers by Framework

Browse Popular Code Answers by Language