流程控制之if

在Python中if是判断语句,用来让计算机同人一样的能有判断能力。

语法1:

if 条件1:
code1
code2
code3
age=20
if age>18:
    print('你已经是成年人')
#你已经是成年人

语法二:if  else

if 条件:
code1
code2
code3
......
else:
code1
code2
code3
......
age =12
if age>18:
    print('你已经成年')
else:
    print('你还是个未成年人')
#你还是未成年人

语法三:if的嵌套

if 条件1:

  if 条件2:

    code1

    code2

  code1

  code2

score=75
if score>60:
    print('合格')
    if score>70:
        print('')
#合格
#

语法4:if的多分支 

if 条件1:
子代码块1
elif 条件2:
子代码块2
elif 条件3:
子代码块3
elif 条件4:
子代码块4
.........
else:
子代码块5
score = 85
if score>90:
    print('优秀’)
elif score>80:
    print('良好')
elif score>70:
    print('')
elif score>60:
    print('合格')
else:
    print('')
#良好

 

  

 

转载于:https://www.cnblogs.com/msj513/p/9648394.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值