摘要: count = 0 while count <= 5 : count += 1 if count == 3:break print("Loop",count) else: print("循环正常执行完啦") print("-----out of while loop ------") 循环没有被break打断就会执行else 部分 阅读全文
posted @ 2018-12-04 00:54 hopelv 阅读(88) 评论(0) 推荐(0)