当while 后面的condition为false 则执行else语句 ''' #while 常用于递归算法 abc = 1 while abc <= 11: abc += 1 print(abc) else: print('It\'s over')
Python---while 语句
#while 循环 当条件为真是,则会出现死循环
'''
如何避免死循环:condition 为一个常量时,一定会出现死循环的状态
或者限制condition 为一定的范围
当while 后面的condition为false 则执行else语句 ''' #while 常用于递归算法 abc = 1 while abc <= 11: abc += 1 print(abc) else: print('It\'s over')
当while 后面的condition为false 则执行else语句 ''' #while 常用于递归算法 abc = 1 while abc <= 11: abc += 1 print(abc) else: print('It\'s over')