在Python中處理日期和時間的基本知識點整理匯總

來源:互聯網
上載者:User
Python程式可以處理多種方式的日期和時間。日期格式之間的轉換是一種常見電腦的雜活。 Python的時間和日曆模組,能協助處理日期和時間。
Tick是什麼?

時間間隔為浮點數以秒為單位的數字。在特定的時間瞬間自上午12時00分,1970年1月1日(紀元)表示,單位為秒。

Python中可用的流行時間模組,它提供功能轉換。該功能time.time()返回當前系統時間,因為上午12點,1970年1月1日(時代)。
例子:

#!/usr/bin/pythonimport time; # This is required to include time module.ticks = time.time()print "Number of ticks since 12:00am, January 1, 1970:", ticks

這將產生一個結果如下:

Number of ticks since 12:00am, January 1, 1970: 7186862.73399

日期計算是很容易。不過當日的時代之前,不能以這種形式來表示。在遙遠的將來的日期也不能代表這種方式- 分界點是一段2038年在UNIX和Windows。
什麼是TimeTuple?

Python的時間函數處理時間為9個數位元組,如所示:

上面的元組相當於struct_time結構。這種結構具有以下屬性:

擷取目前時間 :

轉換一個時刻從秒epoch浮點值轉換成時元組,浮點值傳遞給函數(例如,本地時間)返回時間元組的全部九項有效。

#!/usr/bin/pythonimport time;localtime = time.localtime(time.time())print "Local current time :", localtime

這將產生下面的結果,這可以在任何其他像樣形式被格式化:

Local current time : time.struct_time(tm_year=2013, tm_mon=7, tm_mday=17, tm_hour=21, tm_min=26, tm_sec=3, tm_wday=2, tm_yday=198, tm_isdst=0)

擷取格式化的時間 :

可以隨時根據要求格式化,但簡單的方法來擷取時間,可讀的格式是asctime():

#!/usr/bin/pythonimport time;localtime = time.asctime( time.localtime(time.time()) )print "Local current time :", localtime

這將產生以下結果:

Local current time : Tue Jan 13 10:17:09 2009

擷取日曆月份:

日曆模組提供了廣泛的方法,如有年和月的日曆。在這裡,我們列印日曆給定月份(2015年1月):

#!/usr/bin/pythonimport calendarcal = calendar.month(2015, 1)print "Here is the calendar:"print cal;

這將產生以下結果:

Here is the calendar:  January 2008Mo Tu We Th Fr Sa Su  1 2 3 4 5 6 7 8 9 10 11 12 1314 15 16 17 18 19 2021 22 23 24 25 26 2728 29 30 31
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.