Python time sleep()方法
Python time sleep()方法
Python time sleep() 函数推迟调用线程的运行,可通过参数secs指秒数,表示进程挂起的时间。
语法
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 2013 End : Tue Feb 17 10:19:23 2013
相关文章
- Python for 循环语句
- Python 面向对象
- Python XML 解析
- Python3 函数
- Python3 输入和输出
- Python3 错误和异常
- Python exp() 函数
- Python pow() 函数
- Python os.closerange() 方法
- Python os.dup() 方法
- Python os.getcwd() 方法
- Python os.major() 方法
- Python os.open() 方法
- Python os.tcgetpgrp() 方法
- Python isdigit()方法
- Python maketrans()方法
- Python min()方法
- Python zfill()方法
- Python 字典 Dictionary update()方法
- Python time asctime()方法