Pythonで何かを少し遅らせるにはどうすればよいですか?
その後3秒後に何かを表示して、ユーザーに何かを入力させたいです。
これが私が持っているものです
print "Think of a number between 1 and 100"
print "Then I shall guess the number"
ここは遅らせてほしい
print "I guess", computerguess
raw_input ("Is it lower or higher?")
Pythonで何かを少し遅らせるにはどうすればよいですか?
その後3秒後に何かを表示して、ユーザーに何かを入力させたいです。
これが私が持っているものです
print "Think of a number between 1 and 100"
print "Then I shall guess the number"
ここは遅らせてほしい
print "I guess", computerguess
raw_input ("Is it lower or higher?")
これはうまくいくはずです。
import time
print "Think of a number between 1 and 100"
print "Then I shall guess the number"
time.sleep(3)
print "I guess", computerguess
raw_input ("Is it lower or higher?")
これを試して:
import time
print "Think of a number between 1 and 100"
print "Then I shall guess the number"
time.sleep(3)
print "I guess", computerguess
raw_input ("Is it lower or higher?")
数値3
は、一時停止する秒数を示します。ここを読んでください。
import time
print "Think of a number between 1 and 100"
print "Then I shall guess the number"
time.sleep(3)
print "I guess", computerguess
raw_input ("Is it lower or higher?")