循环语句
for()语句
可以遍历任何序列的项目,如一个列表、元组或者一个字符串
格式:
for 循环索引值 in 序列
循环体
#for循环把字符串中字符遍历出来
for letter in 'Python':
print ( '当前字母 :', letter )
#通过索引循环
fruits = ['banana', 'apple', 'mango']
for i in range(len(fruits)):
print( '当前水果 :', fruits[i] )
print ("What's your favorite fruit?")
while语句
格式:
while 判断条件:
执行语句
count = 0
while count < 9:
print ('The count is:', count)
count = count + 1
print ("Good bye!" )
break语句
在
while
循环和
for
循环中都可以使用,一般放在
if
选择结构中,一旦
break
语句被执行,将使得整个循环提前结束
continue语句
终止当前循环,并忽略
continue
之后的语句,然后回到循环的顶端,提前进入下一次循环