Python time sleep()方法
Python time sleep()方法
Python time sleep() 函數(shù)推遲調(diào)用線程的運(yùn)行,可通過參數(shù)secs指秒數(shù),表示進(jìn)程掛起的時(shí)間。
語法
sleep()方法語法:
time.sleep(t)
參數(shù)
- t -- 推遲執(zhí)行的秒數(shù)。
返回值
該函數(shù)沒有返回值。
實(shí)例
以下實(shí)例展示了 sleep() 函數(shù)的使用方法:
實(shí)例
#!/usr/bin/python import time print "Start : %s" % time.ctime() time.sleep( 5 ) print "End : %s" % time.ctime()
以上實(shí)例輸出結(jié)果為:
Start : Tue Feb 17 10:19:18 2013 End : Tue Feb 17 10:19:23 2013
相關(guān)文章
- Python for 循環(huán)語句
- Python 面向?qū)ο?/a>
- Python XML 解析
- Python3 函數(shù)
- Python3 輸入和輸出
- Python3 錯(cuò)誤和異常
- Python exp() 函數(shù)
- Python pow() 函數(shù)
- 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()方法