Monthly Calendar by hallvabo

from calendar import*
setfirstweekday(6)
_=n,s='\n '
while 1:y,m=map(int,raw_input().split());print month_abbr[m],`y`+_+_.join(month(y,m).split(n)[2:-1])+n

Note that non-ascii characters in the above source code will be escaped (such as \x9f).

download

return to the top page