python 我如何在有条件的情况下重复我的代码?[已关闭]

ffx8fchx  于 2023-01-04  发布在  Python
关注(0)|答案(2)|浏览(90)

编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
9小时前关门了。
Improve this question
我有这段代码,如果用户同意,我想重复它,它会重复整个代码,并清除另一个。
我以为它会重复,但我不知道如何?

pinkon5k

pinkon5k1#

你所需要的只是把你所有的代码重构为函数。最后如果答案是“是”就调用这个函数。你想让这个程序一直工作吗?把它全部放进while循环:)

wgeznvg7

wgeznvg72#

使用while循环执行,直到满足条件

option = "yes"
while(option.lower() == "yes"):
  #Here your block of code
  option = input("Do you want to go again? Yes/No")

相关问题