讓Python腳本暫停執(zhí)行的幾種方法(小結)
1.time.sleep(secs)
參考文檔原文:
Suspend execution for the given number of seconds. The argument may be a floating point number to indicate a more precise sleep time. The actual suspension time may be less than that requested because any caught signal will terminate the sleep() following execution of that signal's catching routine. Also, the suspension time may be longer than requested by an arbitrary amount because of the scheduling of other activity in the system.
大意:
讓程序執(zhí)行暫停指定的秒數(shù),參數(shù)可以是浮點型以指定精確的時間,但是程序真正暫停的時間可能長于請求的時間也可能短于暫停的時間。
2. raw_input( )
通過等待輸入來讓程序暫停
3. os.system("pause")
通過執(zhí)行操作系統(tǒng)的命令來讓程序暫停,該函數(shù)是通過實現(xiàn)標準C函數(shù)system( )來實現(xiàn)的。
Python2.4新加入了subprocess模塊,而且官方建議使用改模塊替換os.system所以,也可以這樣寫:
subprocess.call("pause",shell=True)
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關文章
Python2.x版本中maketrans()方法的使用介紹
這篇文章主要介紹了Python2.x版本中maketrans()方法的使用介紹,是Python學習中的基礎知識,需要的朋友可以參考下2015-05-05

