以下のプログラムは文字列に{0}を使用していますが、どのように動作するのかよく分かりません。オンラインチュートリアルでPythonの繰り返しについて説明しました。このPython文字列で{0}は何を意味していますか?
import random
number = random.randint(1, 1000)
guesses = 0
print("I'm thinking of a number between 1 and 1000.")
while True:
guess = int(input("\nWhat do you think it is? "))
guesses += 1
if guess > number:
print("{0} is too high.".format(guess))
elif guess < number:
print("{0} is too low.".format(guess))
else:
break
print("\nCongratulations, you got it in {0} guesses!\n".format(guesses))
ありがとうございます!
ありがとうございました!それは理にかなっている。 opが見つからないと思われる説明にリンクするには、 – Elizabeth