programming-examples/python/Date/Find the date of the first Monday of a given week.py

2 lines
72 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
import time
print(time.asctime(time.strptime('2015 50 1', '%Y %W %w')))