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