Pythonのtime
モジュールには、sleep()
という便利な関数があります。 基本的に、名前が示すように、Pythonプログラムを一時停止します。 time.sleep()
Bashシェルのsleep
コマンドと同等です。 ほぼすべてのプログラミング言語おいてこの機能を使って多くの使用例です。
Pythonの時間。,sleep() Syntax
This is the syntax of the time.sleep()
function:
1
|
time.sleep(secs)
|
time.sleep() Arguments
- secs – The number of seconds the Python program should pause execution. This argument should be either an
int
or afloat
.,
Pythonの時間を使用しています。sleep()
構文の簡単で簡単な例は次のとおりです。
1
2
3
4
5
6
7
8
|
|
インポート時間
#5秒待つ
時間。sleep(5)
#300ミリ秒待つ
#。3はまた、
時間を使用することができます。スリープ(.,300)
|