programming-examples/python/Date/Program to get week number.py

2 lines
67 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
import datetime
print(datetime.date(2015, 6, 16).isocalendar()[1])