Python Tutorial

Thursday, August 19, 2010

python calender

import calendar
'''
   This code use python calender class syntax
'''

print calendar.monthcalendar(2010,8)
print calendar.month(2010,8)





Output:

[[0, 0, 0, 0, 0, 0, 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, 0, 0, 0, 0, 0]]
    August 2010
Mo Tu We Th Fr Sa Su
                   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 


0 comments:

Post a Comment