Python time localtime()方法

2021-09-06 15:15 更新

Python time localtime()方法


描述

Python time localtime() 函數(shù)類似gmtime(),作用是格式化時(shí)間戳為本地的時(shí)間。 如果sec參數(shù)未輸入,則以當(dāng)前時(shí)間為轉(zhuǎn)換標(biāo)準(zhǔn)。 DST (Daylight Savings Time) flag (-1, 0 or 1) 是否是夏令時(shí)。

語(yǔ)法

localtime()方法語(yǔ)法:

time.localtime([ sec ])

參數(shù)

  • sec -- 轉(zhuǎn)換為time.struct_time類型的對(duì)象的秒數(shù)。

返回值

該函數(shù)沒(méi)有任何返回值。

實(shí)例

以下實(shí)例展示了 localtime() 函數(shù)的使用方法:

#!/usr/bin/python
import time

print "time.localtime() : %s" % time.localtime()

以上實(shí)例輸出結(jié)果為:

time.localtime() : (2009, 2, 17, 17, 3, 38, 1, 48, 0)
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)