Python 常用术语
使用else语句,当条件不再成立时,我们可以运行一次代码块:
例如:
条件为False时,打印输出一条消息:
i = 1 while i < 6: print(i) i += 1 else: print("i 不小于 6")
相关文档:
Python while 教程
Python while 循环
Python while break语句
Python while continue语句
Python while else语句