提问人:Venatic Orphan 提问时间:7/4/2023 最后编辑:jupiterbjyVenatic Orphan 更新时间:7/4/2023 访问量:24
我需要帮助理解“是”和“否”陈述
I need help understanding yes and no statements
问:
我刚刚开始使用 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?")
答: 暂无答案
评论
yes_or_no