七、程序循环结构
程序员文章站
2022-03-19 23:48:19
...
一、遍历循环的应用
for i in range(1,100,49):
print(i)
1
50
99
二、无限循环
三、控制循环保留字
for i in 'python':
if i == 't':
continue
print(i,end='')
else:
print('\n')
print('没有break,所以执行else!')
pyhon
没有break,所以执行else!
for i in 'python':
if i == 't':
break #因为执行break,所以不执行else
print(i,end='')
else:
print('\n')
print('没有break,所以执行else!')
py