Python時間ctime()方法

2019-10-16 23:07:46

Python時間ctime()方法將從紀元(epoch)以秒為單位的時間轉換為表示本地時間的字串。 如果未提供secs或提供了一個None值,則使用time()返回的當前時間。 此功能相當於asctime(localtime(secs))ctime()不使用區域設定資訊。

語法

以下是ctime()方法的語法 -

time.ctime([ sec ])

引數

  • NA

返回值

  • 此方法不返回任何值。

範例

以下範例顯示了ctime()方法的用法 -

#!/usr/bin/python3
import time

print ("ctime : ", time.ctime())

當執行上述程式時,它會產生以下結果 -

ctime :  Wed Jun 21 03:58:49 2019