gpt4 book ai didi

python - 是否可以在一行中为变量赋值、打印和提供输入?

转载 作者:太空宇宙 更新时间:2023-11-04 04:04:17 26 4
gpt4 key购买 nike

我想让用户输入一个值,例如... Fruit 1 of 4: (input).. 但是,提示显示在下一行。

print("Fruit ", i+1, "of ", numF, ": ")
selF = input()

最佳答案

input(..)中制作文本:

selF = input("Fruit %s of %s" % (i+1, numF))

或者使用:

selF = input("Fruit {0} of {1}".format(i+1, numF))

或者如果python版本高于或等于3.6,你可以使用:

selF = input(f"Fruit {i+1} of {numF}")

关于python - 是否可以在一行中为变量赋值、打印和提供输入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57651381/

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