If i have a list from 1 to 365, how could i find the date given an n day from the list?
For example if i sample from the list the number 10, i should get 10/01/2020, if i sample the number 32, i should get 01/02/2020.
I have seen that there is a way to do the inverse operation. (Get the day of the year given a date) here but i couldn't find what i'm looking for exactly.
Let's consider no leap in years.
Is there any way to perform such an operation in Python 3?
Thank you very much in advance