Given dates:
my_guess = \'2014-11-30\' their_guess = \'2017-08-30\'
How do I split the delta between the dates, returning the correct calen
from datetime import datetime d1 = datetime.strptime(my_guess,"%Y-%m-%d") d2 = datetime.strptime(their_guess,"%Y-%m-%d") print d1.date() + (d2-d1) / 2 # first date plus the midpoint of the difference between d1 and d2 2016-04-15