1. 程式人生 > >python獲取當前時間和前一天時間

python獲取當前時間和前一天時間

import 時間 ftime date time 格式化 %d str RF datetime

ime模塊:

import time
time.strftime(‘%Y%m%d‘) //time.strftime(‘%Y-%m-%d-%H:%M:%S‘)

//獲取了當前時間的年月日

datetime:

獲取昨天的時間

import datetime
now_time = date time.datetime.now()
yes_time = now_time + date time.timedelta(days=-1)
yes_time_nyr = yes_time.strftime(‘%Y%m%d‘)//格式化輸出

python獲取當前時間和前一天時間