I have those data'. Year, Day of the year and it's a Leap year
Need to print "Month, Day" from given data.
year= 2020
day_oy= 357
I tried,
if day_ in range(1,32):
new_month= "January"
elif day_ in range(32, 61):
new_month= "February"
...
else:
new_month= "December"
and it takes many lines. And I need to do it using minimum lines.