unix時間戳轉換成正常YYYY-MM-DD HH-MM-SS時間


def stringToUnix(string):

    unixTime = time.mktime(time.strptime(string,"%Y-%m-%d %H:%M:%S"))

    return str(unixTime)


def newUnixTime(time_input, oldtimeList):

    newUnixTimeList = []

    for oldtime in oldtimeList:  

        olddatetime = datetime.fromtimestamp(int(oldtime))

        dayAndhms = str(olddatetime).split(" ")

        newtime = time_input + ' ' + dayAndhms[1]

        new_Time = stringToUnix(newtime)

        newUnixTimeList.append(new_Time)

    return newUnixTimeList


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章