from random import randint
guessed = randint(0,2)
user_guess = input("What do you think the number I'm thinking of is?")
if user_guess == guessed:
print("Correct!")
else:
print("Incorrect!")
私は、コードを繰り返す方法や、異なるメッセージをuser_guessが推測と同じになるまで印刷する方法を探しています。Pythonで完了するまでアクションを繰り返す方法
人が間違って推測すると、私はそれらの人にそのことを伝えてから、別の機会を与えたいと思っています。
ありがとう、初心者のご質問ありがとうございます。
[有効な応答を返すまでユーザーに入力を求める](http://stackoverflow.com/questions/23294658/asking-the-user-for-input-until-they-give-a- valid-response) –