Python3循环
Python中while语句的一般形式:
while 判断条件:
语句
同样需要注意冒号和缩进,另外在Python中没有do…while循环
下面的实例计算1到100总和
##calc.py
n = 100 sum = 0
counter = 1
while counter <= n:
sum = sum + counter
counter += 1 print("total from 1 to 100 : %d",sum)
运行结果:
robot@ubuntu:~/wangqinghe/python/20190826$ python3.5 calc.py
total from 1 to 100 : %d 5050
while循环中使用else语句
在while…else在条件语句为false时执行els语句块
#while.py
count = 0
while count < 5:
print(count," < 5")
count = count + 1
else :
print(count ," >= 5")
运行结果:
robot@ubuntu:~/wangqinghe/python/20190826$ python3.5 while.py
0 < 5
1 < 5
2 < 5
3 < 5
4 < 5
5 >= 5
for循环:
Python for循环可以遍历任何序列的项目,如一个列表或一个字符串
for循环的 一般格式如下
for <variable> in <sequence>:
<statement>
else:
<statement>
实例:
break语句用于跳出当前循环体:
##break.py
sites = ["Baidu","Google","Runoob","Taobao"]
for site in sites:
if site == "Runoob":
print("cainiao!")
break
print("loop data " + site)
else:
print("Having no loop data!")
print("loop end!")
运行结果:
robot@ubuntu:~/wangqinghe/python/20190826$ python3.5 break.py
loop data Baidu
loop data Google
cainiao!
loop end!
range()函数
如果你需要遍历数字序列,可以使用内置的range()函数,它会生成数列,例如:
也可以使range以指定数字开始并指定不同的增量,(甚至可以是负数,有时这也叫步长)
负数:
也可以结合range()和len()函数以遍历一个序列的索引:
还可以使用range()函数来创建一个列表:
break和continue语句及循环中的else子句
break语句可以跳出for和while循环体,如果你从for或while循环终止,任何对应的循环else块将不执行:
#else.py
for letter in 'Runoob':
if letter == 'b':
break;
print('the current letter : ',letter) print("the next example") var = 10
while var > 0:
print('the current variable : ',var)
var = var - 1
if var == 5:
break;
print("GOOF bye!")
运行结果:
robot@ubuntu:~/wangqinghe/python/20190826$ python3 else.py
the current letter : R
the current letter : u
the current letter : n
the current letter : o
the current letter : o
the next example
the current variable : 10
the current variable : 9
the current variable : 8
the current variable : 7
the current variable : 6
GOOF bye!
continue语句被用来Python跳出当前循环块的剩余语句,然后继续下一轮循环。
循环语句可以有else子句,它在穷尽列表(for循环)或条件变为false(以while循环)导致循环终止时被执行,但循环被break终止时不执行。
下列是查询质数的循环例子:
##prime.py
for n in range(2,10):
for x in range(2,n):
if n % x == 0:
print(n," == ",x, '*', n//x )
break
else:
print(n," is prime")
运行结果:
robot@ubuntu:~/wangqinghe/python/20190826$ python3 prime.py
2 is prime
3 is prime
4 == 2 * 2
5 is prime
6 == 2 * 3
7 is prime
8 == 2 * 4
9 == 3 * 3
pass语句
Python pass是空语句,是为了保持程序结构的完整性。
pass不做任何事情,一般用作占位语句:
#pass.py
for letter in 'Runoob':
if letter == 'o':
pass
print('execute pass block')
print('the current letter : ',letter) print("Good bye!")
运行结果:
robot@ubuntu:~/wangqinghe/python/20190826$ python3 pass.py
the current letter : R
the current letter : u
the current letter : n
execute pass block
the current letter : o
execute pass block
the current letter : o
the current letter : b
Good bye!
pass只是为了防止语法的错误
pass就是一条空语句,在代码段中或定义函数时,如果没有内容,或者就先不做任何处理,直接跳过,就可以先使用pass
十进制转换:
#translate.py
while True:
number = input('please input a integer(enter Q exit ):')
if number in ['q','Q']:
break
elif not number.isdigit():
print("input error,please continue input : ")
continue
else:
number = int(number)
print("decimal --> hexadecimal: %d -> 0x%x"%(number,number))
print("decimal --> octonary: %d -> 0x%o"%(number,number))
print("decimal --> binary: %d -> "%number,bin(number))
运行结果:
robot@ubuntu:~/wangqinghe/python/20190826$ python3 translate.py
please input a integer(enter Q exit ):9
decimal --> hexadecimal: 9 -> 0x9
decimal --> octonary: 9 -> 0x11
decimal --> binary: 9 -> 0b1001
please input a integer(enter Q exit ):18
decimal --> hexadecimal: 18 -> 0x12
decimal --> octonary: 18 -> 0x22
decimal --> binary: 18 -> 0b10010
please input a integer(enter Q exit ):q
Python3循环的更多相关文章
- Python3 循环语句
Python3 循环语句 转来的 很适合小白 感谢作者 Python中的循环语句有 for 和 while. Python循环语句的控制结构图如下所示: while 循环 Python中wh ...
- 【python】Python3 循环语句
[python]几种常见的循环 注意:如果涉及到程序中print语句中含有%d,%s,那么要在脚本最开始写语句:#coding=utf-8,才能够正常输出想要的数字或者字符串. Python3 循环语 ...
- Python3循环语句
Python3 循环语句 Python中的循环语句有for和while. 循环语句控制结构图如下: 一.while循环 ①循环结构 while 判断条件: 执行语句 实例: n = int(input ...
- python013 Python3 循环语句
Python3 循环语句本章节将为大家介绍Python循环语句的使用.Python中的循环语句有 for 和 while.Python循环语句的控制结构图如下所示: while 循环Python中wh ...
- python3循环语句while
Python的循环语句有for和while语句,这里讲while语句. Python中while语句的一般形式: while 条件判断 : 语句 需要注意冒号和缩进.另外,注意Python中没有do. ...
- Python3 循环
Python中的循环语句有 for 和 while. Python循环语句的控制结构图如下所示: while 循环 Python中while语句的一般形式: while 判断条件: statement ...
- Python3 循环语句(十)
Python中的循环语句有 for 和 while. Python循环语句的控制结构图如下所示: while 循环 Python中while语句的一般形式: while 判断条件: 语句 同样需要注意 ...
- Python3 循环表达式
一 While循环 基本循环 while 条件: 执行内容 #循环体 ... #循环体 ... #循环体 # 若条件为真,执行循环体内容 # 若条件为假,不执行循环体内容 实例1(Python 3.0 ...
- (三)Python3 循环语句——while
while语句的一般形式: while 判断条件: 语句 同样需要注意冒号和缩进.另外,在 Python 中没有 do..while 循环. 以下实例使用了 while 来计算 1 到 100 的总和 ...
- (四)Python3 循环语句——for
for循环的一般格式如下: for <variable> in <sequence>: <statements> else: <statements> ...
随机推荐
- Jira是什么
JIRA这个工具接触有好几年了,在多个海外项目上都用过这个工具.去年又在项目上深度使用后就有点爱不释手了,回国后也在找机会推荐给其它项目上用.最近正好有新项目需要用,借这个机会把JIRA的配置学习的过 ...
- Linux入职基础-1.2_U盘安装RedHat5具体步骤
从U盘安装RedHat5具体步骤 从U盘安装RedHat Linux的具体步骤: 准备工作: RHEL_5.6_i386_DVD.ISO文件 具体步骤: 1.解压并用ultraiso软件打开rhel- ...
- vscode IIsExpress用法
最近前端调试项目,都要安装IIS,使用IIS Express插件不需要另外在IIS架设站点,方便使用 1.安装IIS Express插件 2.ctrl+shfit+p 启动IIS Express 命令 ...
- python入门-windows下anaconda环境搭建
1. anaconda下载 根据根据自己系统下载32位还是64位,还有版本 python3.6——64bit python3.6——32bit python2.7——64bit python2.7—— ...
- element-ui里的form校验,一直有点疑惑,prop是怎么对应的?
图一 图一中红框内的这种校验,必须在 这个product_form数据域内定义对应的变量名(cid.itemName......),不然对应不上. 图一红框外的那种校验,则不用在数据域内定义对应的变量 ...
- [转]全网最!详!细!tarjan算法讲解
转发地址:https://blog.csdn.net/qq_34374664/article/details/77488976 原版的地址好像挂了..... 看到别人总结的很好,自己就偷个懒吧..以下 ...
- UI5-技术篇-Implementing Expand Entity/Entity Set
转载:https://blogs.sap.com/2014/07/18/implementing-expand-entityentity-set/ Requirement Considering a ...
- iOS 中 UIView 和 CALayer 的关系
UIView 有一个名叫 layer ,类型为 CALayer 的对象属性,它们的行为很相似,主要区别在于:CALayer 继承自 NSObject ,不能够响应事件. 这是因为 UIView 除了负 ...
- FreeRTOS 任务挂起和恢复
在使用RTOS的时候一个实时应用可以作为一个独立的任务.每个任务都有自己的运行环境, 不依赖于系统中其他的任务或者RTOS调度器. 任何一个时间点只能有一个任务运行,具体运行哪个任务是由RTOS调度器 ...
- Vue父组件像子组件传值--自定义属性
这里有个注意的地方,Vue实例控制app DIV 大组件,我们在div中天加小组件的时候,传值需要创建自定义的属性 之后在通过props:[‘属性名’] 来把父元素data中的数据传递给子组件 < ...