I want to calculate the difference between two datetime.date() dates in years and months.
For example;
d1 = date(2001,5,1)
d2 = date(2012,1,1)
d3 = date(2001,1,1)
d4 = date(2012,5,1)
diff1 = d2 - d1
diff2 = d4 - d3
Desired result:
diff1 == 10 years & 8 months.
diff2 == 11 years & 4 months.
Thanks.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…