gpt4 book ai didi

python - 这个 Python 字符串中的 {0} 是什么意思?

转载 作者:IT老高 更新时间:2023-10-28 22:23:36 24 4
gpt4 key购买 nike

以下程序在字符串中使用 {0},我不确定它是如何工作的,它出现在有关 Python 迭代的在线教程中,我似乎找不到任何解释它的地方。

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))

谢谢!

最佳答案

这是格式方法的一个指标,您希望它被格式的第一个(索引零)参数替换。 (例如 "2 + 2 = {0}".format(4))

关于python - 这个 Python 字符串中的 {0} 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6682806/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com