python万年历和月历采用哪个模块?
import datetime import calendar def getYM(): ''' 这是一个简单的年月输入方法 ''' year = raw_input('Input Year: ') month = raw_input('Input Month: ') return year, month def saveGetYM(): ''' 这是一个安全的年月输入方法 ''' while True: try: year_month = raw_input('Input year and month (year,mont): ') year, month = year_month.split(',') year, month = int(year), int(month) if 1900<=year<=2200 and 1<=month<=12: break except: continue return year, month year,month = saveGetYM() c = calendar.Calendar(1) print '-- %d --'%year for w in c.monthdatescalendar(year,month)[:7:]: print '|'.join([d.strftime('%m-%d') for d in w])
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有