programming-examples/python/Date/Find the date of the first Monday of a given week.py
2019-11-15 12:59:38 +01:00

2 lines
72 B
Python

import time
print(time.asctime(time.strptime('2015 50 1', '%Y %W %w')))