(Python)我正在尝试做一个游戏,如果在一定时间内选择了一个选项,则会出现一个print语句[已关闭]

rt4zxlrg  于 2022-11-28  发布在  Python
关注(0)|答案(1)|浏览(117)

已关闭。此问题需要更多focused。当前不接受答案。
**想要改进此问题吗?**更新问题,使其仅关注editing this post的一个问题。

17小时前就关门了。
Improve this question
我怎样才能让程序在选择A 3次后告诉用户他们需要睡眠呢?

Choice = input("Are you ready to play? (yes/no) ")

if Choice.lower() == "yes":
  
  Choice = input(" \n A. Work overtime \n B. Get Some Rest \n C.Grab Something to Eat \n D. Status Check \n Q. Quit \n What will be your choice? ")

  if Choice == "a":
    print("You continue working on your cure.")
oaxa6hgo

oaxa6hgo1#

首先,欢迎来到stackoverflow!我完全理解@Edward Peters的建议,在发布这个问题之前先学习一下python的基础知识。我可以帮你找到一个方法来实现这个方法:
1.创建计数器变量并将其初始化为1
1.在if choice ==“a”循环中添加一个检查,以检查counter是否为3;如果是,则使计数器变量处于初始状态(此处为:1)并打印消息
1.如果选择了其他if条件,则使计数器变量处于初始状态。为了帮助您学习和编写python代码:引用此链接:Python Tutorial

相关问题