标签:
输出当前时间
import time#引入time模块 print time.strftime("%Y-%m-%d %H:%M:%S",time.localtime())
输出日历
import calendar; cal = calendar.month(2016,1); print cal;
Python日期和时间
原文地址:http://www.cnblogs.com/2star/p/5572064.html