Python条件控制和循环语句(if while for )
条件控制
概念:Python 条件语句是通过一条或多条语句的执行结果(True 或者 False)来决定执行的代码块
结构
1. 顺序结构
1. 分支结构
2. 循环结构1. 单分支
if 条件:
条件成立之后执行的代码块2. 双分支
if 条件:
条件成立之后执行的代码块
else:
条件不成立之后执行的代码块
3. 多分支
if 条件:
条件成立之后执行的代码块
elif 条件1:
条件不成立、条件1成立执行的代码块
elif 条件2:
条件不成立、条件1成立执行的代码块
elif 条件3:
条件不成立、条件1成立执行的代码块
elif 条件4:
条件不成立、条件1成立执行的代码块
elif 条件5:
条件不成立、条件1成立执行的代码块
else:
条件不成立之后执行的代码块
- 在嵌套 if 语句中,可以把 if...elif...else 结构放在另外一个 if...elif...else 结构中。
if 表达式1:
语句
if 表达式2:
语句
elif 表达式3:
语句
else:
语句
elif 表达式4:
语句
else:
语句
- 1. 做一个用户登录功能,用户名:kevin,密码:123
# 要求:用户名和密码都输入正确,打印来宾三位,否则:提示用户名或者密码错误
# 1. 接收用户输入的用户名
username = input('请输入你的用户名:')
# 2. 接收用户的密码
password = input('请输入你的密码:') # str
# 3. 比较用户名和密码是否正确
if username == 'kevin' and password == '123':
print('来宾三位')
else:
print('用户名或者密码错误')
1. 根据用户名的不同,打印不同的身份
kevin(管理员) tony(保安) jerry(财务人员) tank(司机) 打印未知人员
1. 让用户输入用户名
username = input('请输入你的用户名:')
开始比较
if username == 'kevin':
print('管理员')
elif username == 'tony':
print('保安')
elif username == 'jerry':
print('财务人员')
elif username == 'tank':
print('司机')
else:
print('未知人员')
注意事项:1. 所有的条件最终都会转化为布尔值进行判断,条件是否成立
2. Python中,使用缩进来表示代码的从属关系
3. 同属于一个代码块的多行子代码块缩进量要一致
4. 不是每一个代码都会有子代码块
## 循环语句
while while+break while + else while+continue 标志位
-
同样需要注意冒号和缩进。另外,在 Python 中没有 do..while 循环。
while 来计算 1 到 100 的总和:
n = 100
sum = 0
counter = 1
while counter <= n:
sum = sum + counter
counter += 1
print("1 到 %d 之和为: %d" % (n,sum))
输入密码: while True: username = input('请输入你的用户名:') password = input('请输入你的密码:') if username == 'kevin' and password == '123': print('登录成功') else: print('登录失败')
while+else
count = 0
while count < 5:
if count == 3:
break
print(count)
count += 1
else:
print('哈哈哈')
"""else: 当while循环中没有被中断(break)的时候会走else语句"""
whlie+break
while True:
username = input('请输入你的用户名:')
password = input('请输入你的密码:')
if username == 'kevin' and password == '123':
<span class="hljs-built_in">print</span>(<span class="hljs-string">'登录成功'</span>) <span class="hljs-keyword">break</span> <span class="hljs-comment"># 跳出本层循环</span>
else:
print('登录失败')
count += 1
break跳出本层循环的含义
while True:
username = input('请输入你的用户名:')
password = input('请输入你的密码:')
if username == 'kevin' and password == '123':
<span class="hljs-built_in">print</span>(<span class="hljs-string">'登录成功'</span>) <span class="hljs-comment">####### 让用户继续输入它要执行的指令,用户输入完指令之后,打印正在执行某个指令</span> <span class="hljs-keyword">while</span> <span class="hljs-literal">True</span>: cmd = <span class="hljs-built_in">input</span>(<span class="hljs-string">'请输入你要执行的指令:'</span>) <span class="hljs-keyword">if</span> cmd == <span class="hljs-string">'q'</span>: <span class="hljs-comment"># 结束程序</span> <span class="hljs-keyword">break</span> <span class="hljs-built_in">print</span>(<span class="hljs-string">'正在执行你的指令:%s'</span> % cmd) <span class="hljs-comment"># 当用户输入q的时候,结束程序</span> <span class="hljs-keyword">break</span>
else:
<span class="hljs-built_in">print</span>(<span class="hljs-string">'登录失败'</span>)
标志位的使用
flag = True while flag: username = input('请输入你的用户名:') password = input('请输入你的密码:')
<span class="hljs-keyword">if</span> username == <span class="hljs-string">'kevin'</span> <span class="hljs-keyword">and</span> password == <span class="hljs-string">'123'</span>: <span class="hljs-built_in">print</span>(<span class="hljs-string">'登录成功'</span>) <span class="hljs-comment">####### 让用户继续输入它要执行的指令,用户输入完指令之后,打印正在执行某个指令</span> <span class="hljs-keyword">while</span> flag: cmd = <span class="hljs-built_in">input</span>(<span class="hljs-string">'请输入你要执行的指令:'</span>) <span class="hljs-keyword">if</span> cmd == <span class="hljs-string">'q'</span>: <span class="hljs-comment"># 结束程序</span> flag = <span class="hljs-literal">False</span> <span class="hljs-built_in">print</span>(<span class="hljs-string">'正在执行你的指令:%s'</span> % cmd) <span class="hljs-comment"># 当用户输入q的时候,结束程序</span> <span class="hljs-keyword">else</span>: <span class="hljs-built_in">print</span>(<span class="hljs-string">'登录失败'</span>)
while+continue
使用while循环打印出0-10之间的数字, 但是不打印6
count = 0
while count < 10:
if count == 6:
count += 1
# 不打印
continue # 跳出while循环的本次循环 --------------- 本层
print(count)
count += 1
死循环:
程序中坚决不能出现死循环
count = 0 while True: print(count) count+=1
"""如果一旦出现了死循环,CPU的利用率会极速拉满,导致其他程序也不能用,甚至于关机"""
for
-
for循环不会出现死循环,它的循环条件不是我们来控制,是人家内部已经控制好了
-
for循环和while循环都是用来重复一个事情的,for循环能够实现的功能,while循环都可以实现
for循环的语法结构更加简洁,它不容易出现死循环,所以,推荐以后能够使用for循环的都使用for循环 -
可迭代对象:字符串、列表、字典、元组等,能够支持for循环的对象都是可迭代对象
for循环的语法格式:
for 变量名 in 可迭代对象:
pass -
'''字典暴露的是字典的key'''
d = {'username': 'jerry', 'age': 18} for i in d: print(i, d[i]) # username age
range关键字
-
- 方式1
for i in range(10): # 生成一个从0开始到9的数字 print(i) for i in [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]: print(i)
-
方式2
for i in range(3, 10): # 生成一个从3开始到9的数字列表
print(i)
-
方式三
for i in range(0, 250, 25): # 第三个参数代表的是步长
print(i)
"""练习题:使用for循环生成这10页的地址"""
https://movie.douban.com/top250?start=0&filter= # 第一页
https://movie.douban.com/top250?start=25&filter= # 第二页
https://movie.douban.com/top250?start=50&filter= # 第三页
https://movie.douban.com/top250?start=75&filter= # 第四页
https://movie.douban.com/top250?start=100&filter= # 第五页
https://movie.douban.com/top250?start=225&filter= # 最后一页
base_url = 'https://movie.douban.com/top250?start=%s&filter='
for i in range(0, 2500, 25):
# print(base_url % i)
print('https://movie.douban.com/top250?start=%s&filter=' % i)
for+break
for i in range(10):
if i == 6:
break
print(i)
for+continue
for i in range(10):
if i == 6:
continue
print(i)
for+else
'''跟while循环的用法一样,中间如果有中断程序,else就不在走了'''
for i in range(10):
if i == 6:
break
print(i)
else:
print('hahh ')
for循环嵌套
for i in range(3):
for j in range(5):
print("*", end='')
print() # print()表示换行
标签:username,count,else,while,循环,print
From: https://www.cnblogs.com/wolongnp/p/17665656.html