Answers for "differencemonth of two dates in python"

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

day difference between two dates in 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 "differencemonth of two dates in python"

Python Answers by Framework

Browse Popular Code Answers by Language