Python time ctime()方法
Python time ctime()方法
Python time ctime() 函數(shù)把一個(gè)時(shí)間戳(按秒計(jì)算的浮點(diǎn)數(shù))轉(zhuǎn)化為time.asctime()的形式。 如果參數(shù)未給或者為None的時(shí)候,將會(huì)默認(rèn)time.time()為參數(shù)。它的作用相當(dāng)于 asctime(localtime(secs))。
語法
ctime()方法語法:
time.ctime([ sec ])
參數(shù)
- sec -- 要轉(zhuǎn)換為字符串時(shí)間的秒數(shù)。
返回值
該函數(shù)沒有任何返回值。
實(shí)例
以下實(shí)例展示了 ctime() 函數(shù)的使用方法:
#!/usr/bin/python import time print "time.ctime() : %s" % time.ctime()
以上實(shí)例輸出結(jié)果為:
time.ctime() : Tue Feb 17 10:00:18 2013
相關(guān)文章
- Python 元組
- Python3 運(yùn)算符
- Python3 數(shù)字(Number)
- Python3 字典(Dictionary)
- Python3 集合(Set)
- Python3 for while 循環(huán)語句
- Python3 網(wǎng)絡(luò)編程
- Python fabs() 函數(shù)
- Python floor() 函數(shù)
- Python min() 函數(shù)
- Python choice() 函數(shù)
- Python os.fstat() 方法
- Python os.lstat() 方法
- Python os.tcsetpgrp() 方法
- Python os.tempnam() 方法
- Python islower()方法
- Python ljust()方法
- Python rjust()方法
- Python Tuple 元組 len()方法
- Python time clock()方法