标签:else 存在 str 语句 int bsp for 执行 while
str = [‘a‘, ‘b‘, ‘c‘]
i = 0
while i < 3:
print(str[i])
i += 1
for j in str:
print(j)
else
print(‘over‘)
for循环的else语句在循环执行结束时执行,如果for循环存在break则不会执行。
标签:else 存在 str 语句 int bsp for 执行 while
原文地址:http://www.cnblogs.com/ForXinYuanStudyPy/p/7629906.html