Python time.ctime()方法將自紀元以來的時間(秒)轉換為本地時間的字符串。這等效於asctime(localtime(seconds))。當不存在時間元組時,使用localtime()返回當前時間。
用法:time.ctime([ sec ])
參數:
- sec:要轉換為字符串表示形式的秒數。
範例1:
讓我們來看一下代碼,並附上說明:
Python3
# imort module
import time
# here no parameter is passed
print(time.ctime())
輸出:
Thu Mar 18 11:00:19 2021
打印與asctime()方法等效的標準時間。
範例2:
讓我們看一下asctime()方法:
Python3
# import time
import time
# gives local time
a = time.localtime()
c = time.asctime(a)
print(c)
輸出:
Thu Mar 18 11:01:02 2021
範例3:
讓我們轉到另一個示例,在該示例中,我們將秒數作為參數傳遞給ctime()方法。
Python3
# import time module
import time
# passing number of seconds as
# parameter to ctime() method
print(time.ctime(1615799665.584516))
輸出:
Mon Mar 15 14:44:25 2021
範例4:
這是另一個示例,其中我們將參數傳遞給ctime()方法。
Python3
# import time module
import time
# passing number of seconds as
# parameter to ctime() method
print(time.ctime(1000))
輸出:
Thu Jan 1 05:46:40 1970
相關用法
- Python os._exit()用法及代碼示例
- Python os.WEXITSTATUS()用法及代碼示例
- Python os.abort()用法及代碼示例
- Python os.renames()用法及代碼示例
- Python os.lseek()用法及代碼示例
- Python PyTorch sin()用法及代碼示例
- Python Sympy Line.is_parallel()用法及代碼示例
- Python PIL GaussianBlur()用法及代碼示例
- Python Numpy np.hermefit()用法及代碼示例
- Python Numpy np.hermevander()用法及代碼示例
- Python Method和Function的區別用法及代碼示例
- Python TextBlob.word_counts()用法及代碼示例
- Python sympy.GreaterThan()用法及代碼示例
- Python sympy.StrictLessThan()用法及代碼示例
- Python sympy.LessThan()用法及代碼示例
- Python sympy.StrictGreaterThan()用法及代碼示例
注:本文由純淨天空篩選整理自annulata2402大神的英文原創作品 Python – time.ctime() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。