您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關python如何對日期時間進行處理的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
獲取當前時間
獲取系統秒數(從紀元時間開始)
日期跟秒數之間轉換
獲取日歷等
日期格式化顯示輸出
這些都非常常見
在python 主要有下面兩個模塊涵蓋了常用日期處理
import time import calender
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2021/11/10 22:49 下午 # @Author : LeiXueWei # @CSDN/Juejin/Wechat: 雷學委 # @XueWeiTag: CodingDemo # @File : __init__.py.py # @Project : hello import time # 從19700101 零時刻開始計算經過多少秒,精確到微秒 ticks = time.time() print("ticks=", ticks) #獲取當前時間 print(time.localtime())
運行效果如下:
這個ticks就是從0時刻計算,至今的秒數累計。
可以隔一秒運行這個程序,每次ticks值加上1(近似)
指定輸入來構造時間:
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2021/11/10 22:49 上午 # @Author : LeiXueWei # @CSDN/Juejin/Wechat: 雷學委 # @XueWeiTag: CodingDemo # @File : createtime.py # @Project : hello import time #fixed time: time.struct_time(tm_year=2021, tm_mon=11, tm_mday=10, tm_hour=22, tm_min=55, tm_sec=11, tm_wday=16, tm_yday=16, tm_isdst=16) fixed = time.struct_time((2021, 11, 10, 22, 55, 11, 16, 16, 16)) print("fixed time:", fixed)
運行效果如下:
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2021/11/10 22:49 上午 # @Author : LeiXueWei # @CSDN/Juejin/Wechat: 雷學委 # @XueWeiTag: CodingDemo # @File : calendardemo.py # @Project : hello import calendar cal = calendar.month(2021, 11) print("cal:", cal)
至今輸出一個月份,這個在Java的Calendar中也沒有。太直接了。
這里我們使用了time模塊的strftime(str from time):
#第一個參數為格式,第二個參數為時間 time.strftime("%Y-%m-%d %H:%M:%S %Z", gmtime))
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2021/11/10 22:49 上午 # @Author : LeiXueWei # @CSDN/Juejin/Wechat: 雷學委 # @XueWeiTag: CodingDemo # @File : createtime2.py # @Project : hello import time sec = 3600 # 紀元開始后的一個小時(GMT 19700101凌晨) # gmtime = time.gmtime(sec) print("gmtime:", gmtime) # GMT print("type:", type(gmtime)) print(time.strftime("%b %d %Y %H:%M:%S", gmtime)) print(time.strftime("%Y-%m-%d %H:%M:%S", gmtime)) print(time.strftime("%Y-%m-%d %H:%M:%S %Z", gmtime)) # 打印日期加上時區 print("*" * 16) localtime = time.localtime(sec) print("localtime:", localtime) # 本地時間 print("type:", type(localtime)) print(time.strftime("%b %d %Y %H:%M:%S", localtime)) print(time.strftime("%Y-%m-%d %H:%M:%S", localtime)) print(time.strftime("%Y-%m-%d %H:%M:%S %Z", localtime)) # 打印日期加上時區 # 試試其他格式 print(time.strftime("%D", localtime)) print(time.strftime("%T", localtime))
稍微解釋一下:
%Y-%m-%d %H:%M:%S %Z 對應的是
年份4位數-月份-日期 小時:分鐘:秒數 時區信息
%b 則是三個字母英文輸出月份,比如Jan/Feb 等。
下面是運行結果:
感謝各位的閱讀!關于“python如何對日期時間進行處理”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。