当前位置:网站首页>学习总结day5
学习总结day5
2022-08-05 05:13:00 【非鱼丶丶】
python循环语句关键字
一:continue和break
continue和break都是循环体关键字(只出现在循环中)
1)continue - 结束一次循环(结束当次循环)
在执行循环体的时候如果遇到continue,那么这次循环结束,直接进入下次循环
2)break - 结束整个循环
for x in range(5):
if x % 2 == 0:
continue
print(x)
for m in range(5):
if m > 3:
break
print(m)
2.while使用套路
例:如果num是偶数就打印偶数,是奇数就打印奇数,如果能被4整除,打印4的倍数
while True:
每次循环需要做的事情(重复执行代码)
if 循环结束条件:
break
# 猜数字游戏,随机产生一个数(0-100),让用户猜测
from random import randint
num = randint(1, 100)
count = 0
while count < 7:
a = int(input('输入数字'))
count += 1
if a == num:
print('正确')
break
else:
if a > num:
print('大了')
else:
print('小了')
print('cai')
二:循环else
完整的for循环:
for 变量 in 序列:
循环体
else:
代码段
完整的while循环:
while 条件语句:
循环体
else:
代码段
1)else不会影响循环
2)如果else对应的循环是自然结束,else后面的代码段会执行;
如果其循环是因为遇到break而结束的,那么else后面的代码在循环结束后不会执行
边栏推荐
- The role of the range function
- 【过一下3】卷积&图像噪音&边缘&纹理
- Algorithms - ones and zeros (Kotlin)
- Opencv中,imag=cv2.cvtColor(imag,cv2.COLOR_BGR2GRAY) 报错:error:!_src.empty() in function ‘cv::cvtColor‘
- 1.3 mysql批量插入数据
- 【过一下16】回顾一下七月
- Flutter learning - the beginning
- Structured Light 3D Reconstruction (2) Line Structured Light 3D Reconstruction
- 位运算符与逻辑运算符的区别
- 【过一下10】sklearn使用记录
猜你喜欢
SQL(二) —— join窗口函数视图
Qt produces 18 frames of Cupid to express his love, is it your Cupid!!!
[cesium] element highlighting
Structured light 3D reconstruction (1) Striped structured light 3D reconstruction
第5讲 使用pytorch实现线性回归
【过一下3】卷积&图像噪音&边缘&纹理
Multi-threaded query results, add List collection
类的底层机制
OFDM 十六讲 5 -Discrete Convolution, ISI and ICI on DMT/OFDM Systems
OFDM Lecture 16 5 -Discrete Convolution, ISI and ICI on DMT/OFDM Systems
随机推荐
Requests库部署与常用函数讲解
server disk array
[Software Exam System Architect] Software Architecture Design ③ Domain-Specific Software Architecture (DSSA)
机器学习(二) —— 机器学习基础
开发一套高容错分布式系统
【过一下6】机器视觉视频 【过一下2被挤掉了】
学习总结week2_2
vscode+pytorch使用经验记录(个人记录+不定时更新)
【Untitled】
Pycharm中使用pip安装第三方库安装失败:“Non-zero exit code (2)“的解决方法
小白一枚各位大牛轻虐虐
In Opencv, imag=cv2.cvtColor(imag,cv2.COLOR_BGR2GRAY) error: error:!_src.empty() in function 'cv::cvtColor'
Mysql5.7 二进制 部署
redis复制机制
Requests the library deployment and common function
Structured Light 3D Reconstruction (2) Line Structured Light 3D Reconstruction
range函数作用
[cesium] 3D Tileset model is loaded and associated with the model tree
Distributed systems revisited: there will never be a perfect consistency scheme...
MySQL Foundation (1) - Basic Cognition and Operation