在Python的while循环中使用else以及循环嵌套的用法
作者:goldensun 时间:2022-10-18 19:17:14
循环使用 else 语句
在 python 中,for … else 表示这样的意思,for 中的语句和普通的没有区别,else 中的语句会在循环正常执行完(即 for 不是通过 break 跳出而中断的)的情况下执行,while … else 也是一样。
#!/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"
以上实例输出结果为:
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写在同一行中, 如下所示:
#!/usr/bin/python
flag = 1
while (flag): print 'Given flag is really true!'
print "Good bye!"
注意:以上的无限循环你可以使用 CTRL+C 来中断循环。
Python 循环嵌套
Python 语言允许在一个循环体里面嵌入另一个循环。
Python for 循环嵌套语法:
for iterating_var in sequence:
for iterating_var in sequence:
statements(s)
statements(s)
Python while 循环嵌套语法:
while expression:
while expression:
statement(s)
statement(s)
你可以在循环体内嵌入其他的循环体,如在while循环中可以嵌入for循环, 反之,你可以在for循环中嵌入while循环。
实例:
以下实例使用了嵌套循环输出2~100之间的素数:#!/usr/bin/python
# -*- coding: UTF-8 -*-
i = 2
while(i < 100):
j = 2
while(j <= (i/j)):
if not(i%j): break
j = j + 1
if (j > i/j) : print i, " 是素数"
i = i + 1
print "Good bye!"
以上实例输出结果:
2 是素数
3 是素数
5 是素数
7 是素数
11 是素数
13 是素数
17 是素数
19 是素数
23 是素数
29 是素数
31 是素数
37 是素数
41 是素数
43 是素数
47 是素数
53 是素数
59 是素数
61 是素数
67 是素数
71 是素数
73 是素数
79 是素数
83 是素数
89 是素数
97 是素数
Good bye!
标签:Python,循环
0
投稿
猜你喜欢
JavaScript在ASP页面中实现掩码文本框效果代码
2013-06-01 19:57:23
go实现反转链表
2024-02-07 12:54:59
SQL中exists的使用方法
2011-12-01 08:36:07
Python实现Const详解
2021-06-24 16:18:40
python绘制带有色块的折线图
2022-08-11 07:01:58
回归预测分析python数据化运营线性回归总结
2023-07-01 15:36:54
Reflow
2009-10-25 12:34:00
国际上十四个优秀网页设计审核站
2007-09-30 20:18:00
Python实现最大子序和的方法示例
2023-04-08 03:30:38
从一个项目中来看三层架构
2008-08-06 12:50:00
mysql 8.0.21免安装版配置方法图文教程
2024-01-23 17:52:53
MVC4制作网站教程第二章 用户注册2.1
2023-06-28 12:33:36
Python竟能画这么漂亮的花,帅呆了(代码分享)
2021-02-04 15:50:00
Python实现爬取并分析电商评论
2022-11-21 17:18:47
python IDLE添加行号显示教程
2022-03-30 18:55:52
Mysql建库字符集和排序规则及说明
2024-01-15 14:04:13
sqlserver2005 xml字段的读写操作
2024-01-16 23:00:37
大数据量分页存储过程效率测试附测试代码与结果
2024-01-15 00:49:21
JSP安全开发之XSS漏洞详解
2023-06-13 13:07:24
golang bad file descriptor问题的解决方法
2024-05-09 09:31:42