(Wow! Premier message!)
Publié après le premier jour du vendredi premium ...
lastfri.py
import calendar
def Last_FridayList(year):
for month in range(1, 13):
lastfri = max(week[calendar.FRIDAY]
for week in calendar.monthcalendar(year, month))
print('{:4d}-{:02d}-{:02d}'.format(year, month, lastfri))
Last_FridayList(2017)
avec ça, 2017-01-27 2017-02-24 2017-03-31 2017-04-28 2017-05-26 2017-06-30 2017-07-28 2017-08-25 2017-09-29 2017-10-27 2017-11-24 2017-12-29 Peut être sorti en standard.
Recommended Posts