python_13_break】的更多相关文章

for i in range(5): print('-----------',i) for j in range(5): print(j) if j>2: break####结束当前循环…