I want all the dates of the present week based on weeknumber.
I can get week number like
import datetime
weeknum=datetime.datetime.now().isocalendar()[1]
result is 20.
wanted all dates of week 20. the final output should be
dates=['2019-05-12','2019-05-13','2019-05-14','2019-05-15','2019-05-16','2019-05-17','2019-05-18']
please help me.