Lines Matching refs:month
26 month = int(sys.argv[2])
28 month = int(raw_input('And in which month? (1-12) '))
29 if not (1 <= month <= 12):
30 print 'There is no month numbered', month
36 day = int(raw_input('And on what day of that month? (1-31) '))
37 if month == 2 and calendar.isleap(year):
40 maxday = calendar.mdays[month]
42 print 'There are no', day, 'days in that month!'
45 bdaytuple = (year, month, day)
66 if bdaytuple < (y, month, day) <= todaytuple:
78 def format((year, month, day)):
79 return '%d %s %d' % (day, calendar.month_name[month], year)
87 def mkdate((year, month, day)):
95 for i in range(1, month):