中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

datetime模塊怎么在Python 中使用

發布時間:2021-02-04 16:07:12 來源:億速云 閱讀:175 作者:Leah 欄目:開發技術

本篇文章給大家分享的是有關datetime模塊怎么在Python 中使用,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

1、獲取當前年月日時分秒

# -*- encoding=utf-8 -*-
import datetime
now = datetime.datetime.now()
print("now:{}".format(now))
year = now.year
print("year:{}".format(year))
month = now.month
print("month:{}".format(month))
day = now.day
print("day:{}".format(day))
hour = now.hour
print("hour:{}".format(hour))
minute = now.minute
print("minute:{}".format(minute))
second = now.second
print("second:{}".format(second))

datetime模塊怎么在Python 中使用

2、datetime轉為string

# -*- encoding=utf-8 -*-
import datetime
now = datetime.datetime.now()
print('type:{}'.format(type(now)))
print('now datetime:{}'.format(now))
now_string = now.strftime('%Y-%m-%d %H:%M:%S')
print('type:{}'.format(type(now_string)))
print('now string:{}'.format(now_string))

datetime模塊怎么在Python 中使用

3、string轉為datetime

# -*- encoding=utf-8 -*-
import datetime
time_str = '2021-01-28 10:51:26'
time_date = datetime.datetime.strptime(time_str, '%Y-%m-%d %H:%M:%S')
print('type:{}'.format(type(time_date)))
print(time_date)

datetime模塊怎么在Python 中使用

4、時間相加

# -*- encoding=utf-8 -*-
import datetime
time_str = '2021-01-28 10:00:00'
time_date = datetime.datetime.strptime(time_str, '%Y-%m-%d %H:%M:%S')
print('原始時間:\t\t\t\t{}'.format(time_date))
add_info = datetime.timedelta(days=1, hours=2, minutes=3, seconds=4)
add_end = time_date + add_info
print('加上1天2個小時3分鐘4秒后:\t{}'.format(add_end))

datetime模塊怎么在Python 中使用

 5、時間相減

①兩個時間差

# -*- encoding=utf-8 -*-
import datetime
time_str = '2021-01-28 10:00:00'
time_date = datetime.datetime.strptime(time_str, '%Y-%m-%d %H:%M:%S')
print('原始時間:\t{}'.format(time_date))
time_str = '2021-05-29 12:12:12'
time_date2 = datetime.datetime.strptime(time_str, '%Y-%m-%d %H:%M:%S')
print('原始時間2:\t{}'.format(time_date2))
time_date3 = time_date2 - time_date
print('時間差:{}'.format(time_date3))

datetime模塊怎么在Python 中使用

②減去1天2個小時3分鐘4秒(加負數)

# -*- encoding=utf-8 -*-
import datetime
time_str = '2021-01-28 10:00:00'
time_date = datetime.datetime.strptime(time_str, '%Y-%m-%d %H:%M:%S')
print('原始時間:\t\t\t\t{}'.format(time_date))
add_info = datetime.timedelta(days=-1, hours=-2, minutes=-3, seconds=-4)
add_end = time_date + add_info
print('減去1天2個小時3分鐘4秒后:\t{}'.format(add_end))

datetime模塊怎么在Python 中使用

以上就是datetime模塊怎么在Python 中使用,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

郎溪县| 高尔夫| 阳原县| 襄城县| 娄底市| 凭祥市| 滦南县| 惠来县| 乐东| 齐河县| 平利县| 马鞍山市| 巴林右旗| 黄陵县| 张家口市| 遂宁市| 玉门市| 克什克腾旗| 旌德县| 株洲市| 安阳市| 美姑县| 调兵山市| 拉孜县| 同心县| 新乐市| 嘉黎县| 尼木县| 沂源县| 车致| 涟源市| 大同市| 郴州市| 阜平县| 五莲县| 元氏县| 正安县| 饶阳县| 兴山县| 思茅市| 延庆县|