1. 請教大牛們~python 如何獲取前五分鍾的時間~
調試通過
importtime
#當前時間
printtime.strftime("%Y-%m-%d%H:%M:%S",time.localtime())
t=time.localtime(time.time()-300)
#5分鍾前
printtime.strftime("%Y-%m-%d%H:%M:%S",t)
2. 如何用python獲取當天零點的時間
如下,可以獲得當天格式化輸出的年月日,或者時間戳
fromdatetimeimportdatetime
importtime
now=datetime.now().date()
#獲取到當天的年月日
printnow
now_time_stamps=time.mktime(now.timetuple())
#將當天年月日轉化為時間戳
printnow_time_stamps
3. python日期獲取秒數
1、使用new Date()獲取當前日期,new Date().getTime()獲取當前毫秒數
2、計算公式,等於獲取的當前日期減去或者加上一天的毫秒數。一天的毫秒數的計算公式:24小時*60分鍾*60秒*1000毫秒,也是86400000毫秒。
舉例:
Date curDate = new Date();
var preDate = new Date(curDate.getTime() - 24*60*60*1000); //前一天
var nextDate = new Date(curDate.getTime() + 24*60*60*1000); //後一天
以下圖片使用後台輸出表示。
(3)python如何快速獲得時間擴展閱讀
var myDate = new Date();
myDate.getYear(); //獲取當前年份(2位)
myDate.getFullYear(); //獲取完整的年份(4位,1970-????)
myDate.getMonth(); //獲取當前月份(0-11,0代表1月)
myDate.getDate(); //獲取當前日(1-31)
myDate.getDay(); //獲取當前星期X(0-6,0代表星期天)
myDate.getTime(); //獲取當前時間(從1970.1.1開始的毫秒數)
myDate.getHours(); //獲取當前小時數(0-23)
myDate.getMinutes(); //獲取當前分鍾數(0-59)
myDate.getSeconds(); //獲取當前秒數(0-59)
myDate.getMilliseconds(); //獲取當前毫秒數(0-999)
myDate.toLocaleDateString(); //獲取當前日期
var mytime=myDate.toLocaleTimeString(); //獲取當前時間
myDate.toLocaleString( ); //獲取日期與時間
Date.prototype.isLeapYear 判斷閏年
Date.prototype.Format 日期格式化
Date.prototype.DateAdd 日期計算
Date.prototype.DateDiff 比較日期差
Date.prototype.toString 日期轉字元串
Date.prototype.toArray 日期分割為數組
Date.prototype.DatePart 取日期的部分信息
Date.prototype.MaxDayOfDate 取日期所在月的最大天數
Date.prototype.WeekNumOfYear 判斷日期所在年的第幾周
StringToDate 字元串轉日期型
IsValidDate 驗證日期有效性
CheckDateTime 完整日期時間檢查
daysBetween 日期天數差
4. python 怎麼獲取當前時間
1、#!/usr/bin/python -t
import time
print time.asctime( time.localtime(time.time()) )
2、print time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time()))
3、print "%s" % time.ctime()
4、from datetime import datetime
print datetime.now()
print datetime.utcnow()
5. Python如何獲取遠程機的時間
遠程獲取伺服器時間可同通過php的一個時間函數獲取,用到的工具:notepad++,ftp,步驟如下:
通過notepad++寫一個php文件另存為time.php。
注意事項:伺服器必須安裝php網站環境。
6. python運行時間的幾種方法
1.獲取當前時間的兩種方法:
importdatetime,time
now=time.strftime("%Y-%m-%d%H:%M:%S")
printnow
now=datetime.datetime.now()
printnow
2.獲取上個月最後一天的日期(本月的第一天減去1天)
last=datetime.date(datetime.date.today().year,datetime.date.today().month,1)-datetime.timedelta(1)
printlast
3.獲取時間差(時間差單位為秒,常用於計算程序運行的時間)
starttime=datetime.datetime.now()
#longrunning
endtime=datetime.datetime.now()
print(endtime-starttime).seconds
4.計算當前時間向後10個小時的時間
d1=datetime.datetime.now()
d3=d1+datetime.timedelta(hours=10)
d3.ctime()
註:常用的類有:datetime和timedelta二種,相互間可以加減。
7. 如何在python中獲得當前時間前幾天的日期
很簡單,下面這些代碼是獲取當前日期的:
importtime
now=time.time()#當前時間戳
print(now)
print(time.ctime(now))#格式化當前時間戳
print(time.localtime(now))#當前時間結構體
mon=time.localtime(now)[1]#從當前時間結構體中提取月
day=time.localtime(now)[2]#從當前時間結構體中提取日
print("當前日期:%s月%s日"%(mon,day))#列印當前月與日
最終列印出來的結過如下:
這里為了演示,將時間戳計算拆解開來了,實際使用中為了提高效率,每天86400秒直接使用。而時間結構體的生成函數也應只使用一次,將返回值賦值給變數,然後從變數中分別提取。
此外還有一點尤其需要注意,Unix時間戳與Windows下不同,單位是毫秒而不是秒,所以在linux等系統下時間差還應額外乘以1000。