I am printing the current date using print(now.strftime("%d-%B-%Y"))
which is working.
However, instead of it printing 21-November-2020
, I want it to print the suffix for each day so 21st-November-2020
instead. As well, it should do this for each day automatically (2nd, 5th, 30th...). Is this possible?
Feel free to ask any questions.