-
流程控制之while循环
-
1、什么是while循环
循环就是重复做某件事,while循环是Python提供第一种循环机制
称之为:条件循环 -
2、为何要有while循环
为了控制计算机能够像人一样去重复做某件事
-
3、如何用while循环
while循环基本语法:
while 条件:
代码1
代码2
代码3
while的运行步骤:
# 步骤1:如果条件为真,那么依次执行:代码1、代码2、代码3、......
# 步骤2:执行完毕后再次判断条件,如果条件为True则再次执行:代码1代码2、代码3、......,
# 如果条件为False,则循环终止
-
while循环的基本用法:
# 案例1:
i=0
tag=True
while tag:
if i == 5:
tag=False
print(i)
i+=1
# 案例2:
i = 0
while i < 6:
print(i)
i += 1
0 # i=1
1 # i=2
2 # i=3
3 # i=4
4 # i=5
5 # i=6
-
死循环:条件永远为True
while True:
x = input(">>> ")
y = input(">>> ")
# x + y
# 1+1
-
结束while循环的两种方式
方式一: 把条件改为False
特点:等到本次循环体代码运行完毕后,下一次循环判断条件时才会生效
i=0
tag=True
while tag:
if i == 5:
tag=False
print(i)
i+=1
方式二:break代表结束本层循环
特点:立即干掉本层while循环
i=0
tag=True
while tag:
if i == 5:
tag=False
# break
print(i)
i+=1
-
嵌套多层的while循环
while循环嵌套+tag的使用
针对嵌套多层的while循环,如果我们的目的很明确就是要在某一层直接退出所有层的循环,
其实有一个窍门,就让所有while循环的条件都用同一个变量,该变量的初始值为True,一
旦在某一层将该变量的值改成False,则所有层的循环都结束
tag = True
while tag: # 第一层循环
while tag: # 第二层循环
while tag: # 第三层循环
tag = False # tag变为False,所有while循环的条件都变为False
while循环嵌套+break的使用
如果while循环嵌套了很多层,要想退出每一层循环则需要在每一层循环都有一个break
while True: # 第一层循环
while True: # 第二层循环
while True: # 第三层循环
break # 终止第三层循环
break # 终止第二层循环
break # 终止第一层循环
# 案例1:
tag = True
while tag:
inp_user = input("username>>>: ")
inp_pwd = input("password>>>: ")
if inp_user == "egon" and inp_pwd == "123":
print('login successful')
# break
tag = False
else:
print('username or password error')
print('=======================>')
# 案例2:
while True:
inp_user = input("username>>>: ")
inp_pwd = input("password>>>: ")
if inp_user == "egon" and inp_pwd == "123":
print('login successful')
while True:
print("""
0 退出
1 取款
2 存款
3 转账
""")
choice = input("请输入您的命令编号:")
if choice == "0":
break
elif choice == "1":
print("正在取款。。。")
elif choice == "2":
print("正在存款。。。")
elif choice == "3":
print("正在转账。。。")
else:
print("输入的指令不存在")
break
else:
print('username or password error')
while+continue:结束本次循环,直接进入下一次循环
count = 0
while count < 6:
if count == 2 or count == 4:
# break
count += 1
continue # continue同级别之后千万别写代码,写了也不会运行
print(count)
count += 1
# 案例:
while True:
inp_user = input("username>>>: ")
inp_pwd = input("password>>>: ")
if inp_user == "egon" and inp_pwd == "123":
print('login successful')
break
else:
print('username or password error')
# continue # continue一定不要加在最后一步
while+else:else的子代码块会在while循环正常死亡时运行,没有被break干掉就叫正常死亡
# 案例一:正常死亡,循环正常执行
count = 0
while count < 5:
if count == 2:
count += 1
continue
print(count)
count += 1
else:
print('====>')
案例二:非正常死亡,如果执行过程中被break,就不会执行else的语句
count = 0
while count < 5:
if count == 2:
break
print(count)
count += 1
else:
print('====>')
-
流程控制之for循环
-
1、什么是for循环
循环就是重复做某件事,for循环是python提供第二种循环机制
-
2、为何要有for循环
理论上for循环能做的事情,while循环都可以做
之所以要有for循环,是因为for循环在循环取值(遍历取值)比while循环更简洁 -
3、如何用for循环
for循环基本语法:
for 变量名 in 可迭代对象: # 此时只需知道可迭代对象可以是字符串列表字典
代码一
代码二
代码三
...
#例1
for item in ['a','b','c']:
print(item)
# 运行结果
a
b
c
# 参照例1来介绍for循环的运行步骤
# 步骤1:从列表['a','b','c']中读出第一个值赋值给item(item=‘a’),然后执行循环体代码
# 步骤2:从列表['a','b','c']中读出第二个值赋值给item(item=‘b’),然后执行循环体代码
# 步骤3: 重复以上过程直到列表中的值读尽
-
for循环的基本用法:
# 案例1:遍历列表
names = ["egon", "tom", "jack", "lili", "lxx", "xxx"]
for x in names:
print(x)
for x,y in [["name","egon"],["age",18],["gender","male"]]: # x,y = ['name', 'egon']
print(x,y)
# 案例2:遍历字典
dic={"k1":111,'K2':2222,"k3":333}
for x in dic: # for 循环默认取的是字典的key赋值给变量名k
print(x,dic[x])
# 案例3:遍历字符串
for x in "hello":
print(x)
msg="you can you up,no can no bb"
for x in msg:
print(x)
总结for循环与while循环的异同
1、相同之处:都是循环,for循环可以干的事,while循环也可以干
2、不同之处:
while循环称之为条件循环,循环次数取决于条件何时变为假
for循环称之为"取值循环",循环次数取决in后包含的值的个数
for x in [1,2,3]:
print('===>')
print('8888')
for+break:同while循环一样
for i in [11,22,33,44,55]:
if i == 33:
break
print(i)
for+continue:同while循环一样
for i in [11,22,33,44,55]:
if i == 33:
continue
print(i)
for+else:同while循环一样
for i in [11,22,33,44,55]:
if i == 33:
break
print(i)
else:
print('++++++++>')
for + range控制循环次数:range()
in后直接放一个数据类型来控制循环次数有局限性:
当循环次数过多时,数据类型包含值的格式需要伴随着增加
for i in range(10,3,-1):
print(i)
i=0
while i < 3:
print(111)
print(222)
print(333)
i+=1
for x in range(3):
print(111)
print(222)
print(333)
range功能介绍
# python2版本演示
'''
>>> range(10)
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>>
>>> range(1,9) # 1...8
[1, 2, 3, 4, 5, 6, 7, 8]
>>>
>>> range(1,9,1) # 1 2 3 4 5 6 7 8
[1, 2, 3, 4, 5, 6, 7, 8]
>>> range(1,9,2) # 1 3 5 7
[1, 3, 5, 7]
'''
for i in range(30):
print('===>')
username='egon'
password='123'
for i in range(3):
inp_name = input('请输入您的账号:')
inp_pwd = input('请输入您的密码:')
if inp_name == username and inp_pwd == password:
print('登录成功')
break
else:
print('输错账号密码次数过多')
for + enumerate
i,name=(0,"egon")
for i,name in enumerate(["egon","tom","jack"]): # [(0,"egon"),(1,"tom"),(2,"jack")]
print(i,name)
for x in enumerate({"k1":111,"k2":2222,"k3":3333}):
print(x)