Get date from ISO week number in Python [duplicate]

With the isoweek module you can do it with:

from isoweek import Week
d = Week(2011, 40).monday()

Leave a Comment