流程控制

一、if判断

# 1、语法一
if 条件:
#条件成立时执行的子代码块`
代码1
代码2
代码3
# 示例:
sex='female'
age=18
is_beautiful=True
if sex == 'female' and age > 16 and age < 20 and is_beautiful:
   print('开始表白。。。')
print('other code1...')
print('other code2...')
print('other code3...')

# 2、语法二
if 条件:
   # 条件成立时执行的子代码块
   代码1
   代码2
   代码3
else:
   # 条件不成立时执行的子代码块
   代码1
   代码2
   代码3
# 示例:
sex='female'
age=38
is_beautiful=True
if sex == 'female' and age > 16 and age < 20 and is_beautiful:
   print('开始表白。。。')
else:
   print('阿姨好。。。')
print('other code1...')
print('other code2...')
print('other code3...')

# 3、语法三:
if 条件1:
   if 条件2:
       代码1
       代码2
       代码3
# 示例:
sex='female'
age=18
is_beautiful=True
is_successful=True
height=1.70
if sex == 'female' and age > 16 and age < 20 and is_beautiful \
       and height > 1.60 and height < 1.80:
   print('开始表白。。。')
   if is_successful:
       print('在一起。。。')
   else:
       print('什么爱情不爱情的,爱nmlgb的爱情,爱nmlg啊.')
else:
   print('阿姨好。。。')
print('other code1...')
print('other code2...')
print('other code3...')

# 4、语法四:
if 条件1:
   代码1
   代码2
   代码3
elif 条件2:
   代码1
   代码2
   代码3
elif 条件3:
   代码1
   代码2
   代码3
.......
else:
   代码1
   代码2
   代码3
   
示例:
'''
如果成绩 >= 90,那么:优秀
如果成绩 >= 80且 < 90, 那么:良好
如果成绩 >= 70且 < 80, 那么:普通
其他情况:很差
'''
score = input('please input your score: ')  # score='100'
score = int(score)
if score >= 90:
   print('优秀')
elif score >= 80:
   print('良好')
elif score >= 70:
   print('普通')
else:
   print('很差')

二、while循环

# 语法:
while 条件:
   代码1
   代码2
   代码3
while True:
   name=input('please input your name: ')
   pwd=input('please input your password: ')
   if name == 'egon' and pwd == '123':
       print('login successful')
   else:
       print('username or password error')
       
# 结束while循环的两种方式
方式一:条件改为False,
   在条件改为False时不会立即结束掉循环,而是要等到下一次循环判断条件时才会生效    
   tag=True
   while tag:
       name=input('please input your name: ')
       pwd=input('please input your password: ')
   
       if name == 'egon' and pwd == '123':
           print('login successful')
           tag=False
       else:
           print('username or password error')
   
       print('===>')  

方式二:while+break
   break一定要放在循环体内,一旦循环体执行到break就会立即结束本层循环
   while True:
       name=input('please input your name: ')
       pwd=input('please input your password: ')
   
       if name == 'egon' and pwd == '123':
           print('login successful')
           break
       else:
           print('username or password error')
   
       print('===>>>>>')
       print('===>>>>>')
   
方式三:while+continue:结束本次循环,直接进入下一次循环
# 示例一
count=1
while count < 6: #count=6
   if count == 4:
       count += 1
       continue  
   print(count)
   count+=1
# 示例二:
while True:
   name=input('please input your name: ')
   pwd=input('please input your password: ')

   if name == 'egon' and pwd == '123':
       print('login successful')
       break
   else:
       print('username or password error')
       # continue # 此处加continue无用

# 了解知识
# while + else:
while 条件:
   代码1
   代码2
   代码3
else:
   在循环结束后,并且在循环没有被break打断过的情况下,才会执行else的代码
   
tag=True
while tag:
   print(1)
   print(2)
   print(3)
   # tag=False
   break
else:
   print('else的代码')

while 条件1:
   while 条件2:
       代码1
       代码2
       代码3

示范一:
while True:
   name=input('please input your name: ')
   pwd=input('please input your password: ')
   if name == 'egon' and pwd == '123':
       print('login successful')
       while True:
           print("""
          0 退出
          1 取款
          2 转账
          3 查询
          """)
           choice=input('请输入您要执行的操作:') #choice='1'
           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')

# 示范二:
tag=True
while tag:
   name=input('please input your name: ')
   pwd=input('please input your password: ')

   if name == 'egon' and pwd == '123':
       print('login successful')
       while tag:
           print("""
          0 退出
          1 取款
          2 转账
          3 查询
          """)
           choice=input('请输入您要执行的操作:') #choice='1'
           if choice == '0':
               tag=False
           elif choice == '1':
               print('取款。。。')
           elif choice == '2':
               print('转账。。。')
           elif choice == '3':
               print('查询')
           else:
               print('输入指令错误,请重新输入')
   else:
       print('username or password error')

三、for循环

# for循环的强大之处在于循环取值
l=['a','b','c','d','e']
i=0
while i < len(l):
   print(l[i])
   i+=1

for x in l: # x='b'
   print(x)

dic={'name':'egon','age':18,'gender':'male'}
for x in dic:
   print(x,dic[x])

# for + break
nums=[11,22,33,44,55]
for x in nums:
   if x == 44:
       break
   print(x)

# for + continue
nums=[11,22,33,44,55]
for x in nums:
   if x == 22 or x == 44:
       continue
   print(x)

# for + else
names=['egon','kevin1111_dsb','alex_dsb','mac_dsb']
for name in names:
   if name == 'kevin_dsb':
       break
   print(name)
else:
   print('======>')

# for+ range()
# range的用法
>>> range(1,5)
[1, 2, 3, 4]
>>> for i in range(1,5):
...     print(i)
...
1
2
3
4
>>> range(1,5,1)
[1, 2, 3, 4]
>>> range(1,5,2) # 1 3
[1, 3]

for i in range(5): # 0 1 2 3 4
   print(i)

# for嵌套
for i in range(3):
   for j in range(4):
       print(i,j)

for i in [0,1,2]: # i=1
   for j in [0,1,2,3]: # j=1
       print(i,j)

0 0
0 1
0 2
0 3
1 0
1 1
1 2
1 3
2 0
2 1
2 2
2 3

流程控制(if、while、for)的更多相关文章

  1. 第10章 Shell编程(4)_流程控制

    5. 流程控制 5.1 if语句 (1)格式: 格式1 格式2 多分支if if [ 条件判断式 ];then #程序 else #程序 fi if [ 条件判断式 ] then #程序 else # ...

  2. Shell命令和流程控制

    Shell命令和流程控制 在shell脚本中可以使用三类命令: 1)Unix 命令: 虽然在shell脚本中可以使用任意的unix命令,但是还是由一些相对更常用的命令.这些命令通常是用来进行文件和文字 ...

  3. PHP基础知识之流程控制的替代语法

    PHP 提供了一些流程控制的替代语法,包括 if,while,for,foreach 和 switch. 替代语法的基本形式是把左花括号({)换成冒号(:),把右花括号(})分别换成 endif;,e ...

  4. Python黑帽编程2.4 流程控制

    Python黑帽编程2.4  流程控制 本节要介绍的是Python编程中和流程控制有关的关键字和相关内容. 2.4.1 if …..else 先上一段代码: #!/usr/bin/python # - ...

  5. 使用yield进行异步流程控制

    现状 目前我们对异步回调的解决方案有这么几种:回调,deferred/promise和事件触发.回调的方式自不必说,需要硬编码调用,而且有可能会出现复杂的嵌套关系,造成"回调黑洞" ...

  6. [Java入门笔记] Java语言基础(四):流程控制

    流程控制指的是在程序运行的过程中控制程序运行走向的方式.主要分为以下几种: 顺序结构 顺序结构,顾名思义,是指程序从上往下逐步顺序执行.中间没有任何的判断和跳转. 分支结构 Java提供两种分支结构: ...

  7. node基础13:异步流程控制

    1.流程控制 因为在node中大部分的api都是异步的,比如说读取文件,如果采用回调函数的形式,很容易造成地狱回调,代码非常不容易进行维护. 因此,为了解决这个问题,有大神写了async这个中间件.极 ...

  8. Shell入门教程:流程控制(1)命令的结束状态

    在Bash Shell中,流程控制命令有2大类:“条件”.“循环”.属于“条件”的有:if.case:属于“循环”的有:for.while.until:命令 select 既属于“条件”,也属于“循环 ...

  9. Oracle中PL/SQL的执行部分和各种流程控制

    Oracle中PL/SQL的执行部分和异常部分 一.PL/SQL的执行部分. 赋值语句. 赋值语句分两种,一种是定义一个变量,然后接收用户的IO赋值:另一种是通过SQL查询结果赋值. 用户赋值举例: ...

  10. swift_简单值 | 元祖 | 流程控制 | 字符串 | 集合

    //: Playground - noun: a place where people can play import Cocoa var str = "Hello, playground& ...

随机推荐

  1. Azure Internet 负载均衡器建立

    摘自微软官方文档 Azure load balancer 是位于第 4 层 (TCP, UDP) 的负载均衡器. 该负载均衡器可以在云服务或负载均衡器集的虚拟机中运行状况良好的服务实例之间分配传入流量 ...

  2. Python读取Json字典写入Excel表格的方法

    需求: 因需要将一json文件中大量的信息填入一固定格式的Excel表格,单纯的复制粘贴肯定也能完成,但是想偷懒一下,于是借助Python解决问题. 环境: Windows7 +Python2.7 + ...

  3. 【[SCOI2016]背单词】

    这是一道贪心题 刚开始yy出来一个比较\(sb\)的贪心 之后发现它错了 首先这道题得先把题面翻译成人话 如果存在一个单词是它的后缀,且当前没被填入,代价为\(n*n\): 如果不存在一个单词是它的后 ...

  4. P2059 [JLOI2013]卡牌游戏

    题目描述 N个人坐成一圈玩游戏.一开始我们把所有玩家按顺时针从1到N编号.首先第一回合是玩家1作为庄家.每个回合庄家都会随机(即按相等的概率)从卡牌堆里选择一张卡片,假设卡片上的数字为X,则庄家首先把 ...

  5. python中的类(二)

    python中的类(二) 六.类的成员 字段:普通字段,静态字段 eg: class Province(): country=’中国’ #静态字段,保存在类中,执行时可以通过类或对象访问 def __ ...

  6. ROS C++ 规范概要

    一.动机 代码一致才能可读.联调.高效率.高复用.可移植性. 二.命名方式 CamelCased camelCased under_scored ALL_CAPITALS 2.1 Package命名方 ...

  7. Shell笔记-02

    Shell支持自定义变量. 定义变量 定义变量时,变量名不加美元符号($),如: variableName="value" 注意,变量名和等号之间不能有空格,这可能和你熟悉的所有编 ...

  8. ORACLE 中rownum和row_number()的使用区别(可指定取sql结果集的第几个数据)

    这篇文章主要介绍了oracle中rownum和row_number()的使用方法以及区别和联系,十分的详细,有需要的小伙伴可以参考下.   row_number()over(partition by ...

  9. .Net core 使用NPOI 直接导入Excel到数据库(即不先将Excel保存到服务器再读取文件到数据库)

    /// <summary> /// 导入信息 /// </summary> /// <param name="file"></param& ...

  10. Oracle 数据库备份和恢复配置

    可能的失败及其解决方法 失败类型 我们坑你遇到的失败或错误分为两大类:物理和逻辑.物理错误一般是硬件错误或使用数据库的应用程序中的软件错误,而逻辑错误一般在终端用户级别(数据库用户和管理员). 按从轻 ...