Programming
How to show Week Numbers in Python
A quick guide to finding or calculating the current ISO week number within Python.
code snippet
import datetime
# Returns ISO week number
datetime.date.today().isocalendar()[1]