gpt4 book ai didi

python - 返回开始或多次重复原始输入

转载 作者:行者123 更新时间:2023-12-01 06:00:50 24 4
gpt4 key购买 nike

我已经编写了一段代码并且它可以工作,现在因为代码中有变量,我想在最后询问该人是否希望退出/继续,他们说继续,它一直回到第一个问题。还有一种方法可以在开始时询问问题要重复多少次。抱歉,无法上传代码,因为它超过 150 行长塔格雷吉·D

最佳答案

i = 0

def code_to_repeat():
# whatever is your code
print "I was repeated : " + str(i) +" times"

while(True):
print "Do you want to run the code (Y/N) : "
stri = raw_input()
print "\n"
if stri=="Y":
i += 1
code_to_repeat()
elif stri=="N"
print "exiting\n"
break;
else:
print "Please Answer Y/N only.\n"

关于python - 返回开始或多次重复原始输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10563920/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com