(轉)python time模組和datetime模組詳解

來源:互聯網
上載者:User

標籤:oct   com   img   轉換   timestamp   optional   不同的   ref   本地   

python time模組和datetime模組詳解

原文:http://www.cnblogs.com/tkqasn/p/6001134.html

一、time模組

 time模組中時間表現的格式主要有三種:

  a、timestamp時間戳記,時間戳記表示的是從1970年1月1日00:00:00開始按秒計算的位移量

  b、struct_time時間元組,共有九個元素組。

  c、format time 格式化時間,已格式化的結構使時間更具可讀性。包括自訂格式和固定格式。

1、時間格式轉換圖:

 

2、主要time產生方法和time格式轉換方法執行個體:

#! /usr/bin/env python# -*- coding:utf-8 -*-# __author__ = "TKQ"import time# 產生timestamptime.time()# 1477471508.05
#struct_time to timestamp
time.mktime(time.localtime())
#產生struct_time# timestamp to struct_time 本地時間time.localtime()time.localtime(time.time())# time.struct_time(tm_year=2016, tm_mon=10, tm_mday=26, tm_hour=16, tm_min=45, tm_sec=8, tm_wday=2, tm_yday=300, tm_isdst=0)# timestamp to struct_time 格林威治時間time.gmtime()time.gmtime(time.time())# time.struct_time(tm_year=2016, tm_mon=10, tm_mday=26, tm_hour=8, tm_min=45, tm_sec=8, tm_wday=2, tm_yday=300, tm_isdst=0)#format_time to struct_timetime.strptime(‘2011-05-05 16:37:06‘, ‘%Y-%m-%d %X‘)# time.struct_time(tm_year=2011, tm_mon=5, tm_mday=5, tm_hour=16, tm_min=37, tm_sec=6, tm_wday=3, tm_yday=125, tm_isdst=-1)#產生format_time#struct_time to format_timetime.strftime("%Y-%m-%d %X")time.strftime("%Y-%m-%d %X",time.localtime())# 2016-10-26 16:48:41#產生固定格式的時間表示格式time.asctime(time.localtime())time.ctime(time.time())# Wed Oct 26 16:45:08 2016

struct_time元組元素結構

屬性                            值tm_year(年)                  比如2011 tm_mon(月)                   1 - 12tm_mday(日)                  1 - 31tm_hour(時)                  0 - 23tm_min(分)                   0 - 59tm_sec(秒)                   0 - 61tm_wday(weekday)             0 - 6(0表示周日)tm_yday(一年中的第幾天)        1 - 366tm_isdst(是否是夏令時)        預設為-1

 

format time結構化表示

格式 含義
%a 本地(locale)簡化星期名稱
%A 本地完整星期名稱
%b 本地簡化月份名稱
%B 本地完整月份名稱
%c 本地相應的日期和時間表示
%d 一個月中的第幾天(01 - 31)
%H 一天中的第幾個小時(24小時制,00 - 23)
%I 第幾個小時(12小時制,01 - 12)
%j 一年中的第幾天(001 - 366)
%m 月份(01 - 12)
%M 分鐘數(00 - 59)
%p 本地am或者pm的相應符
%S 秒(01 - 61)
%U 一年中的星期數。(00 - 53星期天是一個星期的開始。)第一個星期天之前的所有天數都放在第0周。
%w 一個星期中的第幾天(0 - 6,0是星期天)
%W 和%U基本相同,不同的是%W以星期一為一個星期的開始。
%x 本地相應日期
%X 本地相應時間
%y 去掉世紀的年份(00 - 99)
%Y 完整的年份
%Z 時區的名字(如果不存在為空白字元)
%% ‘%’字元

 

常見結構化時間組合:

print time.strftime("%Y-%m-%d %X")#2016-10-26 20:50:13

 3、time加減

#timestamp加減單位以秒為單位import timet1 = time.time()t2=t1+10print time.ctime(t1)#Wed Oct 26 21:15:30 2016print time.ctime(t2)#Wed Oct 26 21:15:40 2016

 

二、datetime模組

datatime模組重新封裝了time模組,提供更多介面,提供的類有:date,time,datetime,timedelta,tzinfo。

1、date類

datetime.date(year, month, day)

靜態方法和欄位

date.max、date.min:date對象所能表示的最大、最小日期;date.resolution:date對象表示日期的最小單位。這裡是天。date.today():返回一個表示當前本地日期的date對象;date.fromtimestamp(timestamp):根據給定的時間戮,返回一個date對象;
from datetime import *import timeprint   ‘date.max:‘, date.maxprint   ‘date.min:‘, date.minprint   ‘date.today():‘, date.today()print   ‘date.fromtimestamp():‘, date.fromtimestamp(time.time())#Output======================# date.max: 9999-12-31# date.min: 0001-01-01# date.today(): 2016-10-26# date.fromtimestamp(): 2016-10-26

 

方法和屬性

d1 = date(2011,06,03)#date對象d1.year、date.month、date.day:年、月、日;d1.replace(year, month, day):產生一個新的日期對象,用參數指定的年,月,日代替原有對象中的屬性。(原有對象仍保持不變)d1.timetuple():返回日期對應的time.struct_time對象;d1.weekday():返回weekday,如果是星期一,返回0;如果是星期2,返回1,以此類推;d1.isoweekday():返回weekday,如果是星期一,返回1;如果是星期2,返回2,以此類推;d1.isocalendar():返回格式如(year,month,day)的元組;d1.isoformat():返回格式如‘YYYY-MM-DD’的字串;d1.strftime(fmt):和time模組format相同。
from datetime import *now = date(2016, 10, 26)tomorrow = now.replace(day = 27)print ‘now:‘, now, ‘, tomorrow:‘, tomorrowprint ‘timetuple():‘, now.timetuple()print ‘weekday():‘, now.weekday()print ‘isoweekday():‘, now.isoweekday()print ‘isocalendar():‘, now.isocalendar()print ‘isoformat():‘, now.isoformat()print ‘strftime():‘, now.strftime("%Y-%m-%d")#Output========================# now: 2016-10-26 , tomorrow: 2016-10-27# timetuple(): time.struct_time(tm_year=2016, tm_mon=10, tm_mday=26, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=2, tm_yday=300, tm_isdst=-1)# weekday(): 2# isoweekday(): 3# isocalendar(): (2016, 43, 3)# isoformat(): 2016-10-26# strftime(): 2016-10-26

 

2、time類

datetime.time(hour[ , minute[ , second[ , microsecond[ , tzinfo] ] ] ] ) 

靜態方法和欄位

time.min、time.max:time類所能表示的最小、最大時間。其中,time.min = time(0, 0, 0, 0), time.max = time(23, 59, 59, 999999);time.resolution:時間的最小單位,這裡是1微秒;

 

方法和屬性

t1 = datetime.time(10,23,15)#time對象
t1.hour、t1.minute、t1.second、t1.microsecond:時、分、秒、微秒;t1.tzinfo:時區資訊;t1.replace([ hour[ , minute[ , second[ , microsecond[ , tzinfo] ] ] ] ] ):建立一個新的時間對象,用參數指定的時、分、秒、微秒代替原有對象中的屬性(原有對象仍保持不變);t1.isoformat():返回型如"HH:MM:SS"格式的字串表示;t1.strftime(fmt):同time模組中的format;
from  datetime import *tm = time(23, 46, 10)print   ‘tm:‘, tmprint   ‘hour: %d, minute: %d, second: %d, microsecond: %d‘ % (tm.hour, tm.minute, tm.second, tm.microsecond)tm1 = tm.replace(hour=20)print   ‘tm1:‘, tm1print   ‘isoformat():‘, tm.isoformat()print   ‘strftime()‘, tm.strftime("%X")#Output==============================================# tm: 23:46:10# hour: 23, minute: 46, second: 10, microsecond: 0# tm1: 20:46:10# isoformat(): 23:46:10# strftime() 23:46:10

3、datetime類

datetime相當於date和time結合起來。
datetime.datetime (year, month, day[ , hour[ , minute[ , second[ , microsecond[ , tzinfo] ] ] ] ] )

靜態方法和欄位

datetime.today():返回一個表示當前本地時間的datetime對象;datetime.now([tz]):返回一個表示當前本地時間的datetime對象,如果提供了參數tz,則擷取tz參數所指時區的本地時間;datetime.utcnow():返回一個當前utc時間的datetime對象;#格林威治時間datetime.fromtimestamp(timestamp[, tz]):根據時間戮建立一個datetime對象,參數tz指定時區資訊;datetime.utcfromtimestamp(timestamp):根據時間戮建立一個datetime對象;datetime.combine(date, time):根據date和time,建立一個datetime對象;datetime.strptime(date_string, format):將格式字串轉換為datetime對象;

 

from  datetime import *import timeprint   ‘datetime.max:‘, datetime.maxprint   ‘datetime.min:‘, datetime.minprint   ‘datetime.resolution:‘, datetime.resolutionprint   ‘today():‘, datetime.today()print   ‘now():‘, datetime.now()print   ‘utcnow():‘, datetime.utcnow()print   ‘fromtimestamp(tmstmp):‘, datetime.fromtimestamp(time.time())print   ‘utcfromtimestamp(tmstmp):‘, datetime.utcfromtimestamp(time.time())#output======================# datetime.max: 9999-12-31 23:59:59.999999# datetime.min: 0001-01-01 00:00:00# datetime.resolution: 0:00:00.000001# today(): 2016-10-26 23:12:51.307000# now(): 2016-10-26 23:12:51.307000# utcnow(): 2016-10-26 15:12:51.307000# fromtimestamp(tmstmp): 2016-10-26 23:12:51.307000# utcfromtimestamp(tmstmp): 2016-10-26 15:12:51.307000

 

方法和屬性

dt=datetime.now()#datetime對象dt.year、month、day、hour、minute、second、microsecond、tzinfo:dt.date():擷取date對象;dt.time():擷取time對象;dt. replace ([ year[ , month[ , day[ , hour[ , minute[ , second[ , microsecond[ , tzinfo] ] ] ] ] ] ] ]):dt. timetuple ()dt. utctimetuple ()dt. toordinal ()dt. weekday ()dt. isocalendar ()dt. isoformat ([ sep] )dt. ctime ():返回一個日期時間的C格式字串,等效於time.ctime(time.mktime(dt.timetuple()));dt. strftime (format)

4.timedelta類,時間加減

使用timedelta可以很方便的在日期上做天days,小時hour,分鐘,秒,毫秒,微妙的時間計算,如果要計算月份則需要另外的辦法。

#coding:utf-8from  datetime import *dt = datetime.now()#日期減一天dt1 = dt + timedelta(days=-1)#昨天dt2 = dt - timedelta(days=1)#昨天dt3 = dt + timedelta(days=1)#明天delta_obj = dt3-dtprint type(delta_obj),delta_obj#<type ‘datetime.timedelta‘> 1 day, 0:00:00print delta_obj.days ,delta_obj.total_seconds()#1 86400.0

 5、tzinfo時區類

#! /usr/bin/python# coding=utf-8from datetime import datetime, tzinfo,timedelta"""tzinfo是關於時區資訊的類tzinfo是一個抽象類別,所以不能直接被執行個體化"""class UTC(tzinfo):    """UTC"""    def __init__(self,offset = 0):        self._offset = offset    def utcoffset(self, dt):        return timedelta(hours=self._offset)    def tzname(self, dt):        return "UTC +%s" % self._offset    def dst(self, dt):        return timedelta(hours=self._offset)#北京時間beijing = datetime(2011,11,11,0,0,0,tzinfo = UTC(8))print "beijing time:",beijing#曼穀時間bangkok = datetime(2011,11,11,0,0,0,tzinfo = UTC(7))print "bangkok time",bangkok#北京時間轉成曼穀時間print "beijing-time to bangkok-time:",beijing.astimezone(UTC(7))#計算時間差時也會考慮時區的問題timespan = beijing - bangkokprint "時差:",timespan#Output==================# beijing time: 2011-11-11 00:00:00+08:00# bangkok time 2011-11-11 00:00:00+07:00# beijing-time to bangkok-time: 2011-11-10 23:00:00+07:00# 時差: -1 day, 23:00:00

(轉)python time模組和datetime模組詳解

相關文章

聯繫我們

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