怎麼停止python指令碼

yzf01發表於2021-09-11

怎麼停止python指令碼

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.

大意:

讓程式執行暫停指定的秒數,引數可以是浮點型以指定精確的時間,但是程式真正暫停的時間可能長於請求的時間也可能短於暫停的時間。

2、raw_input( )

透過等待輸入來讓程式暫停。

3、os.system("pause")

透過執行作業系統的命令來讓程式暫停,該函式是透過實現標準C函式system( )來實現的。

Python2.4新加入了subprocess模組,而且官方建議使用改模組替換os.system所以,也可以這樣寫:

subprocess.call("pause",shell=True)

眾多,盡在python學習網,歡迎線上學習!

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2334/viewspace-2835697/,如需轉載,請註明出處,否則將追究法律責任。

相關文章