91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

python中獲取當前時間的操作步驟

發布時間:2020-08-07 09:36:18 來源:億速云 閱讀:177 作者:小新 欄目:編程語言

這篇文章主要介紹python中獲取當前時間的操作步驟,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

python 如何獲取當前系統的時間

1、導入包

import datetime

python學習網,大量的免費python視頻教程,歡迎在線學習!

2、獲取當前的時間

curr_time = datetime.datetime.now()  # 2019-07-06 14:55:56.873893 <class 'datetime.datetime'>
curr_time.year  # 2019 <class 'int'>
curr_time.month  # 7 <class 'int'>
curr_time.day  # 6 <class 'int'>
curr_time.hour  # 14 <class 'int'>
curr_time.minute  # 55 <class 'int'>
curr_time.second  # 56 <class 'int'>
curr_time.date()  # 2019-07-06 <class 'datetime.date'>

3、格式化

通過datetime.datetime.now(),我們獲取到的時間格式為:2019-07-06 14:55:56.873893,類型:<class 'datetime.datetime'>

我們可以使用strftime()轉換成我們想要的格式。處理之后的返回的值為2019-07-06、07/06等目標形式,類型為str

time_str = curr_time.strftime("%Y-%m-%d")  # 2019-07-06
time_str = curr_time.strftime("%m/%d")  # 07/06

4、類型轉換

時間一般通過:時間對象,時間字符串,時間戳表示

通過datetime獲取到的時間變量,類型為:datetime,那么datetime與str類型如何互相轉換呢?

datetime-->str
time_str = datetime.datetime.strftime(curr_time,'%Y-%m-%d %H:%M:%S')  # 2019-07-06 15:50:12
str-->datetime
time_str = '2019-07-06 15:59:58'
curr_time = datetime.datetime.strptime(time_str,'%Y-%m-%d %H:%M:%S')

以上是python中獲取當前時間的操作步驟的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

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

AI

阿克| 瑞安市| 五常市| 宜黄县| 兴文县| 保靖县| 儋州市| 福清市| 汕头市| 河西区| 新兴县| 磐安县| 洪雅县| 汽车| 北碚区| 东乌珠穆沁旗| 尼玛县| 岳普湖县| 博白县| 五家渠市| 玉门市| 行唐县| 泰兴市| 商水县| 阳春市| 龙岩市| 定远县| 晋江市| 鸡西市| 斗六市| 苍梧县| 新巴尔虎左旗| 凤凰县| 兰溪市| 兴化市| 金昌市| 宜川县| 崇左市| 武威市| 佛山市| 康乐县|