Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Shorter solution in Clear category for The First Working Day by thealfest1
import datetime as dt
def vacation(date, days):
d = dt.date.fromisoformat(date) + dt.timedelta(days)
return str(d + dt.timedelta(7 - d.weekday()) * (d.weekday() > 4))
March 22, 2020