Convet W(Number)-Y(NUMBER) to date in Python
Using Python: How do we convert a series of dates W(Number)-Y(NUMBER) in the following format ‘YYYY-MM-DD’ Example: W01-16 W02-16 W03-16 … To: 2016-01-04 2016-01-11 2016-01-18 … >Solution : Adapated from Get date from week number %w for day of week, giving 1 to be monday %W for week of year %y for year on 2… Read More Convet W(Number)-Y(NUMBER) to date in Python