Python time time()方法
Python time time()方法
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
相關(guān)文章
- Python 數(shù)組
- Python 隊(duì)列
- Python 哈希表
- Python 算法類
- Python3 模塊
- Python3 文件讀寫
- Python3 日期和時(shí)間
- Python choice() 函數(shù)
- Python os.unlink() 方法
- Python os.utime() 方法
- Python isdigit()方法
- Python isspace()方法
- Python min()方法
- Python List count()方法
- Python List insert()方法
- Python 字典 Dictionary len()方法
- Python 字典 Dictionary type()方法
- Python 字典 Dictionary values()方法
- Python time localtime()方法
- Python time tzset()方法