-1 我正在調用一個運行時間不確定的方法。 我想等待它一秒(例如2秒),然後我想下一步我的程序。如何讓python等待返回值有限的時間? 來源 2016-10-14 Kroy +0 使用'time.sleep(s)'from'time'模塊。 '進口時間; time.sleep(2)' – Nf4r +1 什麼是方法?也許'time.sleep'是一個有效的解決方案,但它可能會導致競爭條件。 – +0 在提出問題之前,您需要先進行基本的Google搜索:https://docs.python.org/3/library/time.html – Frogboxe
0 我相信你正在尋找時間模塊中的睡眠功能。 https://docs.python.org/2/library/time.html#time.sleep 來源 2016-10-14 19:33:08 Jay
使用'time.sleep(s)'from'time'模塊。 '進口時間; time.sleep(2)' – Nf4r
什麼是方法?也許'time.sleep'是一個有效的解決方案,但它可能會導致競爭條件。 –
在提出問題之前,您需要先進行基本的Google搜索:https://docs.python.org/3/library/time.html – Frogboxe