超實用的python日期處理筆記

來源:互聯網
上載者:User

標籤:python   time   datetime   

從一個字串開始

>>>time_str='2008-08-08 08:08:08'

 1.1.轉換為struct_time形式的時間   

>>struct = ime.strptime(time_str,'%Y-%m-%d %H:%M:%S')    time.struct_time(tm_year=2008, tm_mon=8, tm_mday=8, tm_hour=8, tm_min=8, tm_sec=8, tm_wday=4, tm_yday=221, tm_isdst=-1)
1.2.如果要得到對應的時間戳記(秒數):

 >>>sec=time.mktime(struct)>>> sec1218154088.0

 1.3.struct_time形式的時間返回開始的字串:
>>time_str=time.strftime("%Y-%m-%d %H:%M:%S",struct)>>> time_str'2008-08-08 08:08:08' 
1.4.時間戳記(秒數)返回到struct_time形式的時間怎麼辦?
<pre name="code" class="python">>> time.gmtime(sec)time.struct_time(tm_year=2008, tm_mon=8, tm_mday=8, tm_hour=0, tm_min=8, tm_sec=8, tm_wday=4, tm_yday=221, tm_isdst=0)
1.5.時間戳記(秒數)要返回到字串應該就知道怎麼弄了吧?當然,有很直接方法,不過轉換回去的時間格式卻不一樣:
>>> time.ctime(sec)'Fri Aug 08 08:08:08 2008' 
1.6.想擷取當前的時間:

今天:

>>> datetime.date.today()       datetime.date(2015, 4, 3)

現在:

>>> datetime.datetime.now()       datetime.datetime(2015, 4, 3, 15, 19, 47, 361000)

現在的時間戳記:

  >>> time.time()

1428045689.396

現在的struct_time形式時間:

>>> time.localtime()

time.struct_time(tm_year=2015, tm_mon=4, tm_mday=3, tm_hour=15, tm_min=21, tm_sec=52, tm_wday=4, tm_yday=93, tm_isdst=0)

現在的UTC日期形式:

  >>> time.ctime()

   ‘Fri Apr 03 15:23:45 2015‘

1.7)datetime.date/datetime/time要轉換成struct_time怎麼辦?

  >>> datetime.datetime.now().timetuple()

     time.struct_time(tm_year=2015, tm_mon=4, tm_mday=3, tm_hour=15, tm_min=31, tm_sec=19, tm_wday=4, tm_yday=93, tm_isdst=-1)

這樣,結合1.2,要轉換成秒是不是很簡單了?


1.8.datetime.date/datetime形式的的日期怎麼轉換成‘2010-01-01 00:00:00’形式的字串?

結合1.3和1.7是不是很簡單?

1.9.字串如何轉換成datetime.date/datetime/time呢?
>>> datetime.datetime.strptime('2014-01-01',"%Y-%m-%d")     datetime.datetime(2014, 1, 1, 0, 0)
2.0.然後要將struct_time轉換為datetime.date/datetime/time也就成功了

在什麼情況下需要將struct_time轉換為datetime.date/datetime/time.看了2.1就明白了

2.1時間運算——時間的加減

 昨天的時間怎麼算?

>> today=datetime.date.today()
    >>> delta=datetime.timedelta(days=1)    >>> yesterday=today-delta    >>> yesterday     datetime.date(2015, 4, 2) 



 明天呢?七天(前)後呢?一分鐘前呢(),一秒呢?

看看這個建構函式:

class datetime.timedelta([days[, seconds[, microseconds[, milliseconds[, minutes[, hours[, weeks]]]]]]]),能協助你回答上面的問題吧?

注意阿,struct_time以及字串都不可以和datetime.timedelta進行運算。所以知道從其他形式轉換成datetime.date/datetime/time.是很有用的吧。

2.2)時間比較:

這個就只說明一句了:datetime.(date/datetime/time.)和struct_time形式的時間都可以進行比較。(彼此之間不能比較)












超實用的python日期處理筆記

相關文章

聯繫我們

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