2019年7月18日
摘要:
常用函数 显示用: calendar.calendar(<年>) calendar.monthr(<年>, <月>), 返回多行字符串 calendar.prmonth(<年>,<月>),相当于print(calendar.monthr(<年>, <月>)) calendar.prcal(<年>) 阅读全文
摘要:
datetime.date() 处理日期(年月日) datetime.time() 处理时间(时分秒,毫秒) datetime.datetime() 处理日期 + 时间 datetime.timedelta() 处理时段(时间间隔) datetime.date.today() 获得今天的日期 dat 阅读全文