Answers for "python days in months difference"

1

python months between two dates

from datetime import datetime

def diff_month(d1, d2):
    return (d1.year - d2.year) * 12 + d1.month - d2.month
Posted by: Guest on May-21-2021
5

difference between two dates in days python

from datetime import date
d0 = date(2017, 8, 18)
d1 = date(2017, 10, 26)
delta = d1 - d0
print(delta.days)
Posted by: Guest on May-11-2020

Code answers related to "python days in months difference"

Python Answers by Framework

Browse Popular Code Answers by Language