首页 > TAG信息列表 > timeStruct
格式化时间
import time #格式化时间(2019-11-27T16:29:54) def TimeFormatS(tS): # t = "2019-11-27T16:29:54" #先转换为时间数组,然后转换为其他格式 timeStruct = time.strptime(tS, "%Y-%m-%dT%H:%M:%S") strTime = time.strftime("%Y%m%d", timeStruct)格式化时间
import time #格式化时间(2019-11-27T16:29:54) def TimeFormatS(tS): # t = "2019-11-27T16:29:54" #先转换为时间数组,然后转换为其他格式 timeStruct = time.strptime(tS, "%Y-%m-%dT%H:%M:%S") strTime = time.strftime("%Y%m%d", timeStruct)