时间:2021-07-01 10:21:17 帮助过:88人阅读
以下是ctime()方法的语法:
time.ctime([ sec ])
参数
返回值
此方法不返回任何值。
例子
下面的例子显示了ctime()方法的使用。
#!/usr/bin/python import time print "time.ctime() : %s" % time.ctime()
当我们运行上面的程序,它会产生以下结果:
time.ctime() : Tue Feb 17 10:00:18 2014