I need some help with finding the last saturday of current month in Python. Now, this code run today show me Saturday 31th July, but I want to obtain Saturday 28th August.
off= (date.today().weekday() - 5)%7
Last_Saturday = (date.today() - timedelta(days=off)).strftime("%d/%m/%Y")