描述
Python时间方法sleep()暂停执行给定的秒数。参数可能是一个浮点数,以指示更精确的睡眠时间。
实际挂起时间可能比请求的短,因为在执行该信号的捕获例程后,任何捕获的信号都将终止 sleep()。
用法
以下是语法sleep()方法 -
time.sleep(t)
参数
t- 这是暂停执行的秒数。
返回值
此方法不返回任何值。
示例
下面的例子展示了 sleep() 方法的用法。
#!/usr/bin/python
import time
print "Start:%s" % time.ctime()
time.sleep( 5 )
print "End:%s" % time.ctime()
当我们运行上面的程序时,它会产生以下结果 -
Start:Tue Feb 17 10:19:18 2009 End:Tue Feb 17 10:19:23 2009
相关用法
- Python time strftime()用法及代码示例
- Python time strptime()用法及代码示例
- Python time ctime()用法及代码示例
- Python time mktime()用法及代码示例
- Python time localtime()用法及代码示例
- Python time clock()用法及代码示例
- Python time asctime()用法及代码示例
- Python time altzone()用法及代码示例
- Python time tzset()用法及代码示例
- Python time time()用法及代码示例
- Python time replace()用法及代码示例
- Python time gmtime()用法及代码示例
- Python time.monotonic()用法及代码示例
- Python time.asctime()用法及代码示例
- Python time.ctime()用法及代码示例
- Python time.perf_counter()用法及代码示例
- Python time.get_clock_info()用法及代码示例
- Python time.gmtime()用法及代码示例
- Python time.time()用法及代码示例
- Python time.mktime()用法及代码示例
注:本文由纯净天空筛选整理自 Python time sleep() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。