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