Python 常用术语
使用break语句,即使while条件为true,我们也可以停止循环:
例如:
i等于3退出循环:
i = 1 while i < 6: print(i) if i == 3: break i += 1
相关文档:
Python while 教程
Python while 循环
Python while break语句
Python while continue语句
Python while else语句