fork(1) download
  1. # @dvoiss:
  2. # https://g...content-available-to-author-only...b.com/3347094
  3.  
  4. # For the reddit daily programmer challenge
  5.  
  6. # Challenge: http://w...content-available-to-author-only...t.com/r/dailyprogrammer/comments/y5svk/8132012_challenge_88_intermediate_printing_out_a/
  7. # Solution: http://w...content-available-to-author-only...t.com/r/dailyprogrammer/comments/y5svk/8132012_challenge_88_intermediate_printing_out_a/c5soy7s
  8.  
  9. import calendar
  10. separator_string = '+' + '-'*20 + '+'
  11. def print_cal(month, year):
  12. month_days = [ '' if i == 0 else str(i) for i in calendar.Calendar(0).itermonthdays(year, month) ]
  13.  
  14. print separator_string + '\n|' + str.center( calendar.month_name[month], 20 ) + '|\n' + separator_string
  15. print '|' + "".join(['{' + str(i) + ':<2}|' for i in range(0, 7) ]).format(*map(lambda x: x[0] + ' ', calendar.day_abbr))
  16. print separator_string
  17. print "".join([('|{' if j % 7 == 0 else '{') + str(i + j + (6 * i)) + ':<2}|'
  18. + ('\n' if j % 7 == 6 and i != (len(month_days) / 7 - 1) else '') for i in range(0, len(month_days) / 7) for j in range(0, 7)]).format(*month_days)
  19. print separator_string
  20.  
  21.  
  22. input = map(lambda x: int(x), raw_input().split(' '))
  23. print_cal( input[0], input[1] )
Success #stdin #stdout 0.12s 11648KB
stdin
3 2011
stdout
+--------------------+
|       March        |
+--------------------+
|M |T |W |T |F |S |S |
+--------------------+
|  |1 |2 |3 |4 |5 |6 |
|7 |8 |9 |10|11|12|13|
|14|15|16|17|18|19|20|
|21|22|23|24|25|26|27|
|28|29|30|31|  |  |  |
+--------------------+