python time,Calendar模組基礎說明

來源:互聯網
上載者:User

標籤:closed   使用   lap   開始   mktime   嵌套   isl   寬度   print   

1 時間戳記:格林威治時間1970年01月01日00分00秒(北京時間1970年01月01日08時00分00秒)起至現在的總秒數。

Python中擷取時間的常用方法是,先得到時間戳記,再將其轉換成想要的時間格式。

2 元組struct_time:日期、時間是包含許多變數的,所以在Python中定義了一個元組struct_time將所有這些變數組合在一起,包括:4位元年、月、日、小時、分鐘、秒等。

所有變數及要求如下:

對應的,struct_time元組的屬性如下:

很多Python函數用一個元組裝起來的9組數文書處理時間:

import time;  # 引入time模組ticks = time.time()print ("目前時間戳為:", ticks)目前時間戳為: 1459996086.7115328
擷取目前時間

從返回浮點數的時間輟方式向時間元群組轉換,只要將浮點數傳遞給如localtime之類的函數。

import timelocaltime = time.localtime(time.time())print ("本地時間為 :", localtime)輸出結果本地時間為 : time.struct_time(tm_year=2016, tm_mon=4, tm_mday=7, tm_hour=10, tm_min=28, tm_sec=49, tm_wday=3, tm_yday=98, tm_isdst=0)

 

擷取格式化的時間

你可以根據需求選取各種格式,但是最簡單的擷取可讀的時間模式的函數是asctime():

import timelocaltime = time.asctime( time.localtime(time.time()) )print ("本地時間為 :", localtime)本地時間為 : Thu Apr  7 10:29:13 2016
格式化日期

我們可以使用 time 模組的 strftime 方法來格式化日期,:

import time# 格式化成2016-03-20 11:45:39形式print (time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))# 格式化成Sat Mar 28 22:24:24 2016形式print (time.strftime("%a %b %d %H:%M:%S %Y", time.localtime()))  # 將格式字串轉換為時間戳記a = "Sat Mar 28 22:24:24 2016"print (time.mktime(time.strptime(a,"%a %b %d %H:%M:%S %Y")))結果為2016-04-07 10:29:46Thu Apr 07 10:29:46 20161459175064.0

python中時間日期格式化符號:

  • %y 兩位元的年份表示(00-99)
  • %Y 四位元的年份表示(000-9999)
  • %m 月份(01-12)
  • %d 月內中的一天(0-31)
  • %H 24小時制小時數(0-23)
  • %I 12小時制小時數(01-12)
  • %M 分鐘數(00=59)
  • %S 秒(00-59)
  • %a 本地簡化星期名稱
  • %A 本地完整星期名稱
  • %b 本地簡化的月份名稱
  • %B 本地完整的月份名稱
  • %c 本地相應的日期表示和時間表示
  • %j 年內的一天(001-366)
  • %p 本地A.M.或P.M.的等價符
  • %U 一年中的星期數(00-53)星期天為星期的開始
  • %w 星期(0-6),星期天為星期的開始
  • %W 一年中的星期數(00-53)星期一為星期的開始
  • %x 本地相應的日期表示
  • %X 本地相應的時間表示
  • %Z 當前時區的名稱
  • %% %號本身
擷取某月日曆

Calendar模組有很廣泛的方法用來處理年曆和月曆,例如列印某月的月曆:

import calendarcal = calendar.month(2016, 1)print ("以下輸出2016年1月份的日曆:")print (cal)輸出為以下輸出2016年1月份的日曆:    January 2016Mo Tu We Th Fr Sa Su             1  2  3 4  5  6  7  8  9 1011 12 13 14 15 16 1718 19 20 21 22 23 2425 26 27 28 29 30 31
Time 模組

Time 模組包含了以下內建函數,既有時間處理的,也有轉換時間格式的:

並不常用

time.altzone返回格林威治西部的夏令時地區的位移秒數。如果該地區在格林威治東部會返回負值(如西歐,包括英國)。對夏令時啟用地區才能使用。>>> import time>>> print ("time.altzone %d " % time.altzone)time.altzone -28800 time.asctime([tupletime])接受時間元組並返回一個可讀的形式為"Tue Dec 11 18:07:14 2008"(2008年12月11日 周二18時07分14秒)的24個字元的字串。>>> import time>>> t = time.localtime()>>> print ("time.asctime(t): %s " % time.asctime(t))time.asctime(t): Thu Apr  7 10:36:20 2016 time.clock()用以浮點數計算的秒數返回當前的CPU時間。用來衡量不同程式的耗時,比time.time()更有用。import timedef procedure():    time.sleep(2.5)# time.clockt0 = time.clock()procedure()print (time.clock() - t0)# time.timet0 = time.time()procedure()print (time.time() - t0)結果為5.000000000000143e-052.5020556449890137time.gmtime([secs])接收時間輟(1970紀元後經過的浮點秒數)並返回格林威治天文時間下的時間元組t。註:t.tm_isdst始終為0>>> import time>>> print ("gmtime :", time.gmtime(1455508609.34375))gmtime : time.struct_time(tm_year=2016, tm_mon=2, tm_mday=15, tm_hour=3, tm_min=56, tm_sec=49, tm_wday=0, tm_yday=46, tm_isdst=0)time.localtime([secs]接收時間輟(1970紀元後經過的浮點秒數)並返回當地時間下的時間元組t(t.tm_isdst可取0或1,取決於當地當時是不是夏令時)。>> import time>>> print ("localtime(): ", time.localtime(1455508609.34375))localtime():  time.struct_time(tm_year=2016, tm_mon=2, tm_mday=15, tm_hour=11, tm_min=56, tm_sec=49, tm_wday=0, tm_yday=46, tm_isdst=0)    time.mktime(tupletime)接受時間元組並返回時間輟(1970紀元後經過的浮點秒數)。import timet = (2016, 2, 17, 17, 3, 38, 1, 48, 0)secs = time.mktime( t )print ("time.mktime(t) : %f" %  secs)print ("asctime(localtime(secs)): %s" % time.asctime(time.localtime(secs)))結果為time.mktime(t) : 1455699818.000000asctime(localtime(secs)): Wed Feb 17 17:03:38 2016time.sleep(secs)延遲調用線程的運行,secs指秒數。import timeprint ("Start : %s" % time.ctime())time.sleep( 5 )print ("End : %s" % time.ctime())time.strftime(fmt[,tupletime])接收以時間元組,並返回以可讀字串表示的當地時間,格式由fmt決定。>>> import time>>> print (time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))2016-04-07 11:18:05time.strptime(str,fmt=‘%a %b %d %H:%M:%S %Y‘)根據fmt的格式把一個時間字串解析為時間元組。>>> import time>>> struct_time = time.strptime("30 Nov 00", "%d %b %y")>>> print ("返回元組: ", struct_time)返回元組:  time.struct_time(tm_year=2000, tm_mon=11, tm_mday=30, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=3, tm_yday=335, tm_isdst=-1)time.time( )返回目前時間的時間戳記(1970紀元後經過的浮點秒數)。>>> import time>>> print(time.time())1459999336.1963577time.tzset()根據環境變數TZ重新初始化時間相關設定。import timeimport os os.environ[‘TZ‘] = ‘EST+05EDT,M4.1.0,M10.5.0‘time.tzset()print (time.strftime(‘%X %x %Z‘)) os.environ[‘TZ‘] = ‘AEST-10AEDT-11,M10.5.0,M3.5.0‘time.tzset()print (time.strftime(‘%X %x %Z‘))23:25:45 04/06/16 EDT13:25:45 04/07/16 AEST
View Code日曆(Calendar)模組

此模組的函數都是日曆相關的,例如列印某月的字元月曆。

星期一是預設的每周第一天,星期天是預設的最後一天。更改設定需調用calendar.setfirstweekday()函數。模組包含了以下內建函數:

1    calendar.calendar(year,w=2,l=1,c=6)返回一個多行字串格式的year年年曆,3個月一行,間隔距離為c。 每日寬度間隔為w字元。每行長度為21* W+18+2* C。l是每星期行數。2    calendar.firstweekday( )返回當前每周起始日期的設定。預設情況下,首次載入caendar模組時返回0,即星期一。3    calendar.isleap(year)是閏年返回True,否則為false。4    calendar.leapdays(y1,y2)返回在Y1,Y2兩年之間的閏年總數。5    calendar.month(year,month,w=2,l=1)返回一個多行字串格式的year年month月日曆,兩列名,一周一行。每日寬度間隔為w字元。每行的長度為7* w+6。l是每星期的行數。6    calendar.monthcalendar(year,month)返回一個整數的單層嵌套列表。每個子列表裝載代表一個星期的整數。Year年month月外的日期都設為0;範圍內的日子都由該月第幾日表示,從1開始。7    calendar.monthrange(year,month)返回兩個整數。第一個是該月的星期幾的日期碼,第二個是該月的日期碼。日從0(星期一)到6(星期日);月從1到12。8    calendar.prcal(year,w=2,l=1,c=6)相當於 print calendar.calendar(year,w,l,c).9    calendar.prmonth(year,month,w=2,l=1)相當於 print calendar.calendar(year,w,l,c)。10    calendar.setfirstweekday(weekday)設定每周的起始日期碼。0(星期一)到6(星期日)。11    calendar.timegm(tupletime)和time.gmtime相反:接受一個時間元組形式,返回該時刻的時間輟(1970紀元後經過的浮點秒數)。12    calendar.weekday(year,month,day)返回給定日期的日期碼。0(星期一)到6(星期日)。月份為 1(一月) 到 12(12月)。
View Code

 

python time,Calendar模組基礎說明

相關文章

聯繫我們

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