how to find how many days between two dates in python code example

Example 1: python datetime get all days between two dates

from datetime import date, timedelta

sdate = date(2008, 8, 15)   # start date
edate = date(2008, 9, 15)   # end date

delta = edate - sdate       # as timedelta

for i in range(delta.days + 1):
    day = sdate + timedelta(days=i)
    print(day)

Example 2: pytthon how many fridays´ between two dates

from datetime import  date

d1 = date(2017, 1, 4)
d2 = date(2017, 1, 31)

count = 0

for d_ord in range(d1.toordinal(), d2.toordinal()):
    d = date.fromordinal(d_ord)
    if (d.weekday() == 4):
        count += 1

print(count)