Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
dancetime dance revolution solution in Clear category for The First Working Day by veky
import datetime, calendar
Sat, day = list(calendar.day_name).index('Saturday'), datetime.date.resolution
def vacation(date, days):
current = datetime.date.fromisoformat(date) + days*day
while current.weekday() >= Sat: current += day
return current.isoformat()
Oct. 29, 2018
Comments: