亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python如何對日期時間進行處理

發布時間:2021-12-19 12:02:40 來源:億速云 閱讀:544 作者:小新 欄目:開發技術

這篇文章給大家分享的是有關python如何對日期時間進行處理的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

開發中常用的日期操作有哪些?

  • 獲取當前時間

  • 獲取系統秒數(從紀元時間開始)

  • 日期跟秒數之間轉換

  • 獲取日歷等

  • 日期格式化顯示輸出

這些都非常常見

在python 主要有下面兩個模塊涵蓋了常用日期處理

import time
import calender

我們看看這兩個模塊。

time 內置模塊

#!/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())

運行效果如下:

python如何對日期時間進行處理

這個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)

運行效果如下:

python如何對日期時間進行處理

calender 內置模塊

#!/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中也沒有。太直接了。

python如何對日期時間進行處理

日期格式化處理

這里我們使用了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如何對日期時間進行處理

感謝各位的閱讀!關于“python如何對日期時間進行處理”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

莱州市| 温泉县| 泗阳县| 丰顺县| 比如县| 明水县| 龙海市| 上高县| 琼海市| 菏泽市| 广西| 商水县| 江山市| 高邮市| 黔东| 宁津县| 玛多县| 安吉县| 米脂县| 滦南县| 北流市| 丘北县| 南郑县| 泸水县| 兴隆县| 黄平县| 乐安县| 永康市| 古丈县| 故城县| 栖霞市| 集贤县| 门头沟区| 天全县| 高要市| 岫岩| 龙州县| 民乐县| 商城县| 乐东| 通州区|