Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
clear and verbose solution in Clear category for Days Between by michaeltg12
def days_diff(date1, date2):
from datetime import datetime
d1 = datetime(*date1[:])
d2 = datetime(*date2[:])
d3 = d2 - d1
print('{} - {} = {}'.format(d2, d1, d3))
return abs(d3.days)
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert days_diff((1982, 4, 19), (1982, 4, 22)) == 3
assert days_diff((2014, 1, 1), (2014, 8, 27)) == 238
assert days_diff((2014, 8, 27), (2014, 1, 1)) == 238
July 13, 2018
Comments: