My aim is to find which nth day of week in the month is a given date? For example, I want to be able to have the following:
Input
:
21 December 2020
Output
:
3rd Monday of this month
Java's Calendar library does exactly what I need as illustrated here. Looking for a Python equivalent or an already existing answer pointing to the same (I tried a lot to find but in vain. So I gave up and am asking here as a last resort).