Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Gets it done solution in Clear category for When is Friday? by martin_b
from time import strptime
def friday(d):
return (4 - strptime(d, '%d.%m.%Y').tm_wday) % 7
June 3, 2018
Comments: