Python 獲取前幾天的時候

2021-09-25 19:25:17 字數 1463 閱讀 9918

now = datetime.datetime.now()

now = datetime.datetime(2019,07,23,00,00,00)

import time

import datetime

# 先獲得時間陣列格式的日期

threedayago = (datetime.datetime.now() - datetime.timedelta(days = 2))

# 轉換為時間戳

timestamp = int(time.mktime(threedayago.timetuple()))

# 轉換為其他字串格式

otherstyletime = threedayago.strftime("%y-%m-%d %h:%m:%s")

import time

import datetime

#給定時間戳

timestamp = 時間戳

datearray = datetime.datetime.utcfromtimestamp(timestamp)

threedayago = datearray - datetime.timedelta(days = 2)

print(threedayago)

now = (datetime.datetime.now() - datetime.timedelta(days = 1))

# 轉換為時間戳

#timestamp = int(time.mktime(threedayago.timetuple()))

# 轉換為其他字串格式

參考文章

Qt獲取前幾天 後幾天的時間

qt獲取前幾天的時間 qdatetime time qdatetime currentdatetime 獲取系統現在的時間 qstring str time.tostring yyyy mm dd 設定顯示格式 qstring beforedaystr time.adddays 1 tostring...

前幾天整理的Python小程式

1 1,2,3,4 中選出任意三位數排列不能有重合 for i in range 1,5 for j in range 1,5 for k in range 1,5 if i j and i k and j k print i,j,k 思路 可以先列印再判斷 企業發放的獎金根據利潤提成。利潤 i 低...

獲取當前時間 以及幾天前, 幾天後的時間方法

js獲取當前時間方法 時間格式均為yyyy mm dd 獲取當前時間方法 function getnowtime if strdate 0 strdate 9 var currentdate year seperator1 month seperator1 strdate return curren...