python日期計算相關彙總

2021-10-10 12:00:10 字數 616 閱讀 9343

以前很少使用python的時間相關模組,最難跳槽了新的單位,會經常進行時間的計算,所以把python的日期、時間模組的相關運算彙總在此。

import datetime

import time

t=datetime.datetime(

2008,2

,16,13

,42,33

)#python的日期型別為datetime

t1=datetime.datetime(

2008,3

,1)print

(type

((t1-t)))

#兩個datetime相減,得到的是'datetime.timedelta': '13 days, 10:17:27'

print

((t1-t)

.days)

#返回兩個日期的天數

print

(datetime.datetime.now(

)-t)

#得到當下距離t的timedelta

最近連加了三天班,每天早出晚歸潼兒幾乎見不著媽媽,早上起來一聽到媽媽要去上班就要哭,很無奈。。。

希望自己能在工具使用上更進一步,提公升效率。

python日期運算 Python 日期計算器

coding utf 8 created on fri aug 16 2019 author yangyang import easygui as g import datetime 獲取今天的日期 today datetime.date.today 判斷日期是否合法 def is date dat...

Python 日期格式相關

今天看網上乙個說中文日期的問題.自己試了下.1 2 3 4 5 6 7 8 9 10 coding gb2312 importdatetime,time now time.strftime y年 m月 d日 h時 m分 s秒 time.localtime decode utf 8 now time....

python 日期相關操作

資料集3的特徵為 取 線上資料中領券和用券日期大於3月15日和小於6月30日的 feature3 off train off train.date 20160315 off train.date 20160630 off train.date null off train.date received...