gpt4 book ai didi

javascript - 是否有 Python 2 等效于 Javascripts confirm() 命令?

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

简短的版本只是个问题。

更长的版本:我正在通过 Codecademy 学习 Javascript,同时尝试重新学习 Python 2。我刚刚完成了选择你自己的冒险故事。

在下面的代码中,除了第 2 行中的 confirm 命令之外,我可以弄清楚如何轻松地将所有内容调整为 Python 2。

// Check if the user is ready to play!
confirm("It's gametime!");
var age = prompt("What's your age");
if (age < 13)
{
console.log("You're really young, but go play");
}
else
{
console.log("You're old enough. Start playing");
}
console.log("You are at a Justin Bieber concert, and you hear this lyric 'Lace my shoes off, start racing.'");
console.log("Suddenly, Bieber stops and says, 'Who wants to race me?'");
var userAnswer = prompt("Do you want to race Bieber on stage?");
if (userAnswer === "yes")
{
console.log("You and Bieber start racing. It's neck and neck! You win by a shoelace!");
}
else
{
console.log("Oh no! Bieber shakes his head and sings 'I set a pace, so I can race without pacing.'");
}
var feedback = prompt("Rate this game from 1-10");
if (feedback > 8)
{
console.log("Thank you! We should race at the next concert!");
}
else
{
console.log("I'll keep practicing coding and racing.");
}

如果有任何帮助,我将不胜感激。非常感谢。

最佳答案

如果您试图在命令行中捕获用户的输入,您可以使用 raw_input功能:

age = raw_input("What's your age?\n")

关于javascript - 是否有 Python 2 等效于 Javascripts confirm() 命令?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29868301/

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