首页 > Python资料 博客日记
Python while循环语句用法(python怎么用while循环)
2023-07-30 15:35:11Python资料围观269次
只要给定条件为真(True),Python编程语言中的while
循环语句将重复执行目标语句。
语法
Python编程语言中的while
循环的语法是 -
while expression: statement(s)
在这里,语句(statement(s)
)可以是一个单一的语句或一组具有统一缩进的语句。条件(expression
)可以是任何表达式,True
是任何非零值。循环在条件为真时执行。
当条件(expression
)变为false
时,程序控制传递到循环之后的代码行。
在Python中,在编程结构之后由相同数量的字符空格缩进的所有语句都被认为是单个代码块的一部分。 Python使用缩进作为对语句进行分组的方法。
流程图
在这里,while
循环的一个关键点在于循环可能不会运行。 当条件被测试并且结果为假时,循环体将被跳过,并且while
循环块之后的第一个语句将被执行。
示例
#!/usr/bin/python3 count = 0 while (count < 9): print ('The count is:', count) count = count + 1 print ("Good bye!")
当执行上述代码时,会产生以下结果 -
The count is: 0 The count is: 1 The count is: 2 The count is: 3 The count is: 4 The count is: 5 The count is: 6 The count is: 7 The count is: 8 Good bye!
在上面输出结果中,打印和增量语句组成的块将重复执行,直到count
大于9
时退出。在每次迭代中,打印显示count
的当前值,然后增加1
。
无限循环
如果条件从不变为FALSE
,则循环变为无限循环。 使用while
循环时必须谨慎,因为在无法解析为FALSE
值的这种情况时,将导致永远不会结束的循环。这样的循环被称为无限循环。
无限循环可能在客户端/服务器编程中有用,服务器需要连续运行,以便客户端程序可以在需要时与其进行通信。
示例
#!/usr/bin/python3 var = 1 while var == 1 : # This constructs an infinite loop num = int(input("Enter a number :")) print ("You entered: ", num) print ("Good bye!")
当执行上述代码时,会产生以下结果 -
Enter a number :20 You entered: 20 Enter a number :29 You entered: 29 Enter a number :3 You entered: 3 Enter a number :11 You entered: 11 Enter a number :22 You entered: 22 Enter a number :Traceback (most recent call last): File "examples\test.py", line 5, in num = int(input("Enter a number :")) KeyboardInterrupt
上面的例子进入一个无限循环,在运行后需要使用CTRL + C来退出程序。
在循环中使用else语句
Python支持与循环语句相关联的else
语句。
如果
else
语句与for
循环一起使用,则在循环遍历列表时循环执行else
语句。如果
else
语句与while
循环一起使用,则在条件变为false
时执行else
语句。
以下示例说明了else
语句与while
语句的组合,该语句在变量 count
小于5
时印数字,当count
大于5
时执行else
语句。
#!/usr/bin/python3 count = 0 while count < 5: print (count, " is less than 5") count = count + 1 else: print (count, " is not less than 5")
当执行上述代码时,会产生以下结果 -
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
单个语句套件
类似于if
语句的语法,如果while
子句只包含一个语句,那么它可能被放在与while
头相同的行上。
示例
以下是一行while
子句的语法和示例 -
#!/usr/bin/python3 flag = 1 while (flag): print ('Given flag is really true!') print ("Good bye!")
上述示例进入无限循环,需要按CTRL + C键退出。
标签:
相关文章
最新发布
- 【Python】selenium安装+Microsoft Edge驱动器下载配置流程
- Python 中自动打开网页并点击[自动化脚本],Selenium
- Anaconda基础使用
- 【Python】成功解决 TypeError: ‘<‘ not supported between instances of ‘str’ and ‘int’
- manim边学边做--三维的点和线
- CPython是最常用的Python解释器之一,也是Python官方实现。它是用C语言编写的,旨在提供一个高效且易于使用的Python解释器。
- Anaconda安装配置Jupyter(2024最新版)
- Python中读取Excel最快的几种方法!
- Python某城市美食商家爬虫数据可视化分析和推荐查询系统毕业设计论文开题报告
- 如何使用 Python 批量检测和转换 JSONL 文件编码为 UTF-8
点击排行
- 版本匹配指南:Numpy版本和Python版本的对应关系
- 版本匹配指南:PyTorch版本、torchvision 版本和Python版本的对应关系
- Python 可视化 web 神器:streamlit、Gradio、dash、nicegui;低代码 Python Web 框架:PyWebIO
- 相关性分析——Pearson相关系数+热力图(附data和Python完整代码)
- Python与PyTorch的版本对应
- Anaconda版本和Python版本对应关系(持续更新...)
- Python pyinstaller打包exe最完整教程
- Could not build wheels for llama-cpp-python, which is required to install pyproject.toml-based proj