我需要帮助理解“是”和“否”陈述

I need help understanding yes and no statements

提问人:Venatic Orphan 提问时间:7/4/2023 最后编辑:jupiterbjyVenatic Orphan 更新时间:7/4/2023 访问量:24

问:

我刚刚开始使用 python,正在尝试构建一个简单的项目来进一步理解是和否问题。

在下面的代码中,在显示第二个问题并且用户输入 yes - I get no returns(是 - 我没有得到任何回报)后。在这个非常简单的代码中,我缺少什么?

print ("Hello And welcome to Jims Grab and Go")
user_input = input("what is your name? \n\n")
print ("Hello " + user_input)

user_input = input("May i interest you in our world famous chili dogs?\n\n")

def yes_or_no():
    while True:
        answer =  input("Yes or No?").lower()

        if answer == "yes":
            print ("""Sure thing, I'll get that made for you, your total will be $5.50""")

        elif answer == "no":
            print("well then, what can i get for you today?")
python-3.x if-statement 布尔运算

评论

4赞 jupiterbjy 7/4/2023
你确保执行函数了吗?你可能忘记了那个重要的部分!yes_or_no

答: 暂无答案