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

溫馨提示×

溫馨提示×

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

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

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

师宗县| 屯门区| 鲜城| 长岭县| 乐业县| 长汀县| 全州县| 富裕县| 靖江市| 德保县| 海盐县| 高淳县| 扶风县| 虞城县| 玛纳斯县| 寿宁县| 塔城市| 邹城市| 东阳市| 康马县| 治多县| 永济市| 吉水县| 门头沟区| 安义县| 连江县| 固镇县| 红原县| 岱山县| 平顶山市| 罗山县| 万年县| 横峰县| 延吉市| 兴城市| 兰坪| 克拉玛依市| 景德镇市| 五大连池市| 大连市| 西充县|