大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
这篇文章给大家介绍python的时间语句有哪些呢 ,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
创新互联,为您提供网站建设、成都网站制作、网站营销推广、网站开发设计,对服务成都柴油发电机等多个行业拥有丰富的网站建设及推广经验。创新互联网站建设公司成立于2013年,提供专业网站制作报价服务,我们深知市场的竞争激烈,认真对待每位客户,为客户提供赏心悦目的作品。 与客户共同发展进步,是我们永远的责任!
def getCurrentSec(self): return time.time()-8*60*60 def getCurrentDate(self): ISOTIMEFORMAT='%Y-%m-%d' return time.strftime(ISOTIMEFORMAT, time.localtime(time.time())) def getCurrentTime(self): ISOTIMEFORMAT='%X' return time.strftime(ISOTIMEFORMAT, time.localtime(time.time())) def getCurrentDateTime(self): ISOTIMEFORMAT='%Y-%m-%d %X' #将本地时间转换为世界时 return time.strftime(ISOTIMEFORMAT, time.localtime(time.time()-8*60*60)) def string2Time(self, s): ISOTIMEFORMAT='%Y-%m-%d %X' return time.strptime( s, ISOTIMEFORMAT ) def Time2ISOString(self, s): ISOTIMEFORMAT='%Y-%m-%d %X' return time.strftime(ISOTIMEFORMAT, time.localtime(float(s))) ===================================================================
def GetSecondByDateTime(self, datetimeStr): # 由日期时间字符串获取秒数(整数) ISOTIMEFORMAT='%Y-%m-%d %X' return time.mktime(time.strptime(datetimeStr, ISOTIMEFORMAT)) def GetSecondByDate(self, dateStr): # 由日期字符串获取秒数(整数) ISOTIMEFORMAT='%Y-%m-%d' return time.mktime(time.strptime(dateStr, ISOTIMEFORMAT)) def GetTupleBySecond(self, second): # 由秒数(整数或浮点数)获得日期时间的元组,形如(年,月,日,时,分,秒,星期,天数,夏令时标志) ISOTIMEFORMAT='%Y-%m-%d %X' return time.localtime(second) def GetDateTimeBySecond(self, second): # 由秒数(整数或浮点数)获得日期时间字符串 ISOTIMEFORMAT='%Y-%m-%d %X' return time.strftime(ISOTIMEFORMAT, time.localtime(second)) def GetDateBySecond(self, second): # 由秒数(整数或浮点数)获得日期字符串 ISOTIMEFORMAT='%Y-%m-%d' return time.strftime(ISOTIMEFORMAT, time.localtime(second))
关于python的时间语句有哪些呢 就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。