python根据日期返回星期
摘要:
import time#定义:timedate为时间戳def formattime(timedate,s="%Y-%m-%d %H:%M:%S"): return time.strftime(s,time.gmtime(int(timedate) + 8*60*60))#获取时间戳t1=time.mktime(time.strptime('2012-04-02','%Y-%m-%d'))#返回星期formattime(t1,'%A')python中时间日期格式化符号:%y 两位数的年份表示(00-99)%Y 四位数的年份表示( 阅读全文