黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python time time()方法

Python time time()方法

Python 日期和時(shí)間Python 日期和時(shí)間

Python time time() 返回當(dāng)前時(shí)間的時(shí)間戳(1970紀(jì)元后經(jīng)過的浮點(diǎn)秒數(shù))。

 

語法

time()方法語法:

time.time()

 

參數(shù)

  • NA。

 

返回值

返回當(dāng)前時(shí)間的時(shí)間戳(1970紀(jì)元后經(jīng)過的浮點(diǎn)秒數(shù))。

 

實(shí)例

以下實(shí)例展示了 time() 函數(shù)的使用方法:

#!/usr/bin/python
import time

print "time.time(): %f " %  time.time()
print time.localtime( time.time() )
print time.asctime( time.localtime(time.time()) )

以上實(shí)例輸出結(jié)果為:

time.time(): 1234892919.655932
(2009, 2, 17, 10, 48, 39, 1, 48, 0)
Tue Feb 17 10:48:39 2009

Python 日期和時(shí)間Python 日期和時(shí)間

下一節(jié):Python time tzset()方法

Python 教程

相關(guān)文章