python 程式能用很多方式處理日期和時間,轉換日期格式是乙個常見的功能。
python 提供了乙個 time 和 calendar 模組可以用於格式化日期和時間。
時間間隔是以秒為單位的浮點小數。
每個時間戳都以自從2023年1月1日午夜(曆元)經過了多長時間來表示。
python 的 time 模組下有很多函式可以轉換常見日期格式。如函式time.time()用於獲取當前時間戳, 如下例項:
#!/usr/bin/python# -*- coding: utf-8 -*-
import time; # 引入time模組
ticks = time.time()
print "當前時間戳為:", ticks
以上例項輸出結果:
當前時間戳為: 1459994552.51
從返回浮點數的時間輟方式向時間元組轉換,只要將浮點數傳遞給如localtime之類的函式。
#!/usr/bin/python# -*- coding: utf-8 -*-
import time
localtime = time.localtime(time.time())
print "本地時間為 :", localtime
以上例項輸出結果:
本地時間為 : time.struct_time(tm_year=2016, tm_mon=4, tm_mday=7, tm_hour=10, tm_min=3, tm_sec=27, tm_wday=3, tm_yday=98, tm_isdst=0)
你可以根據需求選取各種格式,但是最簡單的獲取可讀的時間模式的函式是asctime():
#!/usr/bin/python# -*- coding: utf-8 -*-
import time
localtime = time.asctime( time.localtime(time.time()) )
print "本地時間為 :", localtime
以上例項輸出結果:
本地時間為 : thu apr 7 10:05:21 2016
我們可以使用 time 模組的 strftime 方法來格式化日期,:
time.strftime(format[, t])
#!/usr/bin/python# -*- coding: utf-8 -*-
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:25:09thu apr 07 10:25:09 2016
1459175064.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模組有很廣泛的方法用來處理年曆和月曆,例如列印某月的月曆:
#!/usr/bin/python# -*- coding: utf-8 -*-
import calendar
cal = calendar.month(2016, 1)
print "以下輸出2023年1月份的日曆:"
print cal;
以上例項輸出結果:
以下輸出2023年1月份的日曆:january 2016
mo tu we th fr sa su
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
python中的時間和日期
1.python中的datetime是處理時間和日期的標準庫 now time datetime.now print now time 2015 08 26 09 55 24.042232 type now time 說明 第二行中的datetime是datetime庫中的類,所以now time的...
python日期和時間 Python日期和時間
python程式可以通過多種方式處理日期和時間。日期格式之間的轉換是電腦的常見煩惱。python的時間和日曆模組可以幫助跟蹤日期和時間。什麼是蜱 時間間隔是以秒為單位的浮點數。1970年1月1日上午12 00 時代 時間的特殊時刻表示。python中有乙個受歡迎的時間模組,它提供了處理時間的功能,並...
Python中的日期時間
python 解析時間字串 將時間輸出為字串 解析時間字串 datetime 類 strptime 函式 含義 str parse time import datatime min date datetime.datetime.strptime 2018 10 11 y m d datetime.d...