如何做出正确的选择板块?

问题描述 投票:0回答:1

我正在尝试编写一个基本的选择系统,尽管我遇到了问题。

PChoice = input("What is your choice?: ")
RootChoice = input("Are you sure?:")
if input == "yes" or "Yes":
if RootChoice == "no" or "No":
 print("Please choose again")
 print("You Chose " + PChoice)

我似乎不知道如何让它只打印是行或否行(您选择了,请再次选择) 如果这是基本的,我很抱歉,这是我的第一个单独开发项目。

我试图编写代码,如果选择的话,会打印一个选项,我尝试编写一个 if not 命令,但这不起作用。

python if-statement
1个回答
0
投票
PChoice = input("What is your choice?: ")

RootChoice = input("Are you sure? (yes/no): ").lower()

if RootChoice == "yes":
    print("You chose " + PChoice)
elif RootChoice == "no":
    print("Please choose again")
else:
    print("Invalid response. Please answer 'yes' or 'no'.")
© www.soinside.com 2019 - 2024. All rights reserved.