當前位置:成語大全網 - 新華字典 - python3 環境,如何計算時間的比較和加減

python3 環境,如何計算時間的比較和加減

顯示5分鐘前的時間

print(datetime.datetime.now()?-?datetime.timedelta(seconds?=?5*60))

構造時間並顯示時間差

d?=?datetime.datetime.now()

d?=?d.replace(hour?=?9,minute?=?30,second?=?0)

print((datetime.datetime.now()?-?d))