gpt4 book ai didi

python - 如何在一行中使用 raw_input 值来在 python 中获取输入

转载 作者:行者123 更新时间:2023-11-30 23:25:42 26 4
gpt4 key购买 nike

我想将输入作为 raw_input 的字符串,并希望在另一行中使用该值来在 python 中获取输入。我的代码如下:

p1 = raw_input('Enter the name of Player 1 :')
p2 = raw_input('Enter the name of Player 2 :')


p1 = input('Welcome %s > Enter your no:') % p1

这里代替%s我想输入 p1 的值.

提前致谢。

最佳答案

你可以这样做(绝​​大多数人都会同意这是最好的方法):

p1 = input('Welcome {0} > Enter your no:'.format(p1))

关于python - 如何在一行中使用 raw_input 值来在 python 中获取输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22882427/

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