当while循环被break打断,就不会执行else结果。
count = 0 while count < 5: count += 1 if count == 3 : break print('loop',count) else: print('循环正常执行完成了') print('-------------out of while loop-------------')