2020
10-08
10-08
python3 中时间戳、时间、日期的转换和加减操作
1.当前时间戳转换为指定格式的日期#-*-coding:utf-8-*-#@Time:2019/5/3110:56#@Author:甄超锋#@Email:4535@sohu.com#@File:test.py#@Software:PyCharmimportdatetimeimporttime#使用timetimeStamp=time.time()#1559286774.2953627timeArray=time.localtime(timeStamp)otherStyleTime=time.strftime("%Y-%m-%d%H:%M:%S",timeArray)print(otherStyleTime)#2019-05-3115:12:54#使用datetimet...
继续阅读 >