描述
方法time()以自纪元以来的秒数表示的浮点数返回时间,以 UTC 为单位。
注意- 尽管时间总是作为浮点数返回,但并非所有系统都提供比 1 秒更好的时间精度。虽然此函数通常返回非递减值,但如果系统时钟在两次调用之间已回退,则它可以返回比前一次调用低的值。
用法
以下是语法time()方法≫
time.time()
参数
NA
返回值
此方法以浮点数形式返回时间,以自纪元以来的秒数表示,以 UTC 为单位。
示例
下面的例子展示了 time() 方法的用法。
#!/usr/bin/python3
import time
print ("time.time():%f " % time.time())
print (time.localtime( time.time() ))
print (time.asctime( time.localtime(time.time()) ))
结果
当我们运行上面的程序时,它会产生以下结果——
time.time():1455519806.011433 time.struct_time(tm_year = 2016, tm_mon = 2, tm_mday = 15, tm_hour = 12, tm_min = 33, tm_sec = 26, tm_wday = 0, tm_yday = 46, tm_isdst = 0) Mon Feb 15 12:33:26 2016
相关用法
- Python 3 time tzset()用法及代码示例
- Python 3 time strftime()用法及代码示例
- Python 3 time asctime()用法及代码示例
- Python 3 time altzone()用法及代码示例
- Python 3 time localtime()用法及代码示例
- Python 3 time mktime()用法及代码示例
- Python 3 time gmtime()用法及代码示例
- Python 3 time sleep()用法及代码示例
- Python 3 time ctime()用法及代码示例
- Python 3 time strptime()用法及代码示例
- Python 3 time clock()用法及代码示例
- Python 3 Number tan()用法及代码示例
- Python 3 os.fstatvfs()用法及代码示例
- Python 3 List pop()用法及代码示例
- Python 3 os.minor()用法及代码示例
- Python 3 dictionary cmp()用法及代码示例
- Python 3 String isupper()用法及代码示例
- Python 3 os.close()用法及代码示例
- Python 3 List index()用法及代码示例
- Python 3 String decode()用法及代码示例
注:本文由纯净天空筛选整理自 Python 3 - time time() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。