黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python time ctime()方法

Python time ctime()方法

Python 日期和時(shí)間Python 日期和時(shí)間

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

Python 日期和時(shí)間Python 日期和時(shí)間

下一節(jié):Python time gmtime()方法

Python 教程

相關(guān)文章