我编写了一个程序,但我不知道如何循环它。帮助将不胜感激。 这是我需要帮助的程序。
答案 0 :(得分:1)
有两种类型的循环:无限(while)循环和明确(for)循环。如果要将程序循环特定次数,请使用for循环:
for count in range(0, <number of repetitions minus one>):
# code
如果要循环程序,直到用户输入&#34; QUIT&#34;或其他一些字符串,请使用:
sentinel = input("Enter QUIT to exit or anything else to continue: ")
while sentinel.upper() != "QUIT":
# code
以下是教程的一些有用链接:
http://www.learnpython.org/en/Loops
http://www.python-course.eu/python3_for_loop.php
http://anh.cs.luc.edu/python/hands-on/3.1/handsonHtml/whilestatements.html#while-statements
答案 1 :(得分:0)
如果你在谈论一个无限循环(即它必须不停地继续),那么只需使用
white True:
<Your code here>
如果它不是一个无限循环,只有达到某个值,那么你可以这样做:
counter = 0
while counter <= 10:
print "This will continue till counter = 10"
counter += 1
答案 2 :(得分:-2)
你应该创建一个程序函数,这个函数可以放在一个循环中。如需进一步帮助,请发布您的代码!