Answers for "python get total days in a year"

0

python get how many days in current month

import calendar
import datetime
now = datetime.datetime.now()
print calendar.monthrange(now.year, now.month)[1]
29
Posted by: Guest on June-17-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 "python get total days in a year"

Python Answers by Framework

Browse Popular Code Answers by Language