Python time time()方法
Python 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 队列
- Python 哈希表
- Python 算法类
- Python3 模块
- Python3 文件读写
- Python3 日期和时间
- Python choice() 函数
- Python os.unlink() 方法
- Python os.utime() 方法
- Python isdigit()方法
- Python isspace()方法
- Python min()方法
- Python List count()方法
- Python List insert()方法
- Python 字典 Dictionary len()方法
- Python 字典 Dictionary type()方法
- Python 字典 Dictionary values()方法
- Python time localtime()方法
- Python time tzset()方法