Python學習筆記5-時間模組time

來源:互聯網
上載者:User

標籤:%s   mkt   one   local   一個   時間模組   int   函數   str   

import timetime.sleep(2) #等待幾秒# 1、格式化好的時間 2018-1-14 16:42# 2、時間戳記 是從unix元年到現在所有的秒數# 3、時間元組#想時間戳記和格式化好的時間互相轉換的話,都要先轉成時間元組,然後才能轉print(int(time.time())) #目前時間戳cur_time = time.strftime(‘%Y-%m-%d %H:%M:%S‘)cur_time2 = time.strftime(‘%H%M%S‘) #取目前時間的格式化時間print(time.gmtime())#預設取標準時區的時間元組,如果傳入了一個時間戳記,那麼就把這個時間戳記轉換成時間元組。print(time.timezone) #和標準時間相差了幾個小時print(time.gmtime(1516005840)) #標準時區。cur_time3= time.localtime(1516005840) #預設取當前時區的時間元組,如果傳入了一個時間戳記,那麼就把這個時間戳記轉換成時間元組。res = time.strftime(‘%Y-%m-%d %H:%M:%S‘,cur_time)def timestampToStr(time_strmp,format=‘%Y%m%d%H%M%S‘):#時間戳記轉格式化好的時間cur_time = time.localtime(time_strmp)  #時間戳記轉成時間元組res = time.strftime(format, cur_time) #再把時間元組轉成格式化好的時間return resdef strToTimestamp(time_st,format=‘%Y%m%d%H%M%S‘):#20181128113859#這個函數是格式化好的時間,轉時間戳記的t=time.strptime(time_st,format) #把格式化好的時間轉成時間元組res = time.mktime(t) #時間元組轉成時間戳記return res

 

Python學習筆記5-時間模組time

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.