Python 3 While 循环语句
Python while 语句用于循环执行程序,也就是在某条件下,循环执行某段程序,以处理需要重复处理的相同任务
语法
while condition : statements(s)
statements(s) 执行语句可以是单个语句或语句块
condition 判断条件可以是任何表达式,任何非零、或非空(null)的值均为 true
当判断条件 (condition ) 为 false 时,循环结束
while 循环语句执行流程
Python while 语句执行过程 gif 动图演示
范例
while 语句的简单用法
#!/usr/bin/python count = 0 while (count < 9): print (count) count = count + 1 print ("end.")
运行以上 Python 代码,输出结果如下
0 1 2 3 4 5 6 7 8 end.
在 while 语句中使用 continue 和 break 语句
while 语句中还可以使用 continue,break 来跳过循环
- continue 用于跳过该次循环
- break 则是用于退出循环
此外 "判断条件" 还可以是个常值,表示循环必定成立
#!/usr/bin/python # continue 和 break 用法 i = 1 while i < 10: i += 1 if i%2 > 0: # 非双数时跳过输出 continue print (i) # 输出双数2、4、6、8、10 i = 1 while 1: # 循环条件为1必定成立 print (i) # 输出1~10 i += 1 if i > 10: # 当i大于10时跳出循环 break
无限循环
如果条件判断语句永远为 true,循环将会无限的执行下去
#!/usr/bin/python var = 1 while var == 1 : # 该条件永远为true,循环将无限执行下去 num = input("Enter a number :") print ("You entered: ", num) print ("end.")
运行以上 Python 范例,输出结果如下
Enter a number :39 You entered: 39 Enter a number :17 You entered: 17 Enter a number :7 You entered: 7 Enter a number between :Traceback (most recent call last): File "main.py", line 5, in <module> num = input("Enter a number :") KeyboardInterrupt
当程序陷入无限循环时可以使用 CTRL+C 来退出执行
循环使用 else 语句
while 语句后可以跟一个 else 语句用于当 while 语句的循环条件为 false 时执行
#!/usr/bin/python count = 0 while count < 5: print (count, " is less than 5") count = count + 1 else: print (count, " is not less than 5")
运行以上 Python 代码,输出结果如下
0 is less than 5 1 is less than 5 2 is less than 5 3 is less than 5 4 is less than 5 5 is not less than 5
无限循环简写
当 while 循环体中只有一条语句时,可以将该语句与 while 写在同一行中
#!/usr/bin/python flag = 1 while (flag): print ('Given flag is really true!') print ("Good bye!")
当程序陷入无限循环时可以使用 CTRL+C 来退出执行