python中time库的time.time()函数的作用是什么?
作用:Python time time() 返回当前时间的时间戳(1970纪元后经过的浮点秒数)。
time()方法语法:time.time()
参数 NA。
返回值 返回当前时间的时间戳(1970纪元后经过的浮点秒数)
实例
以下实例展示了 time() 函数的使用方法:
#!/usr/bin/python import time print "time.time(): %f " % time.time() print time.localtime( time.time() ) print time.asctime( time.localtime(time.time()) )
登录后复制
以上实例输出结果为:
time.time(): 1234892919.655932 (2009, 2, 17, 10, 48, 39, 1, 48, 0) Tue Feb 17 10:48:39 2009
登录后复制
推荐教程: 《Python教程》
以上就是python中time库的time.time()函数的作用是什么的详细内容,更多请关注Work网其它相关文章!