FishC------08了不起的分支与循环2

1.课堂例题

按照100分制,90+=A,80-90=B,60-80=C,60-=D,当用户输入分数,自动转换ABCD打印

print("------判断分数-----")
temp=input("请输入你的分数: ")
score=float(temp)
if 100 >score >= 90:
    print("A")
else:
    if score>=80 and score <90:
        print("B")
    else:
        if 60<=score<80:
            print("c")
        else:
            if score<60:
                print("d")
            else:
                print("输入错误")
print("------判断分数-----")
temp=input("请输入你的分数: ")
score=float(temp)
if 100 >score >= 90:
    print("A")
elif score>=80 and score <90:
    print("B")
elif 60<=score<80:
    print("c")
elif score<60:
    print("d")
else:
    print("输入错误")

elif=else if 

悬挂else 容易导致Bug出现 

x,y=4,5
if x<y:
    small=x
else:
    small=y

small=x if x<y else y

assert 假==程序自动崩溃并抛出AssertionError异常,可以用它设置断点

2.if not (money <100)

等于 if money>=100

3.python中成员运算符 

3.1 in 如果在指定序列中找到,则返回True,如果找不到,返回False

3.2 not in 如果在指定序列中没找到,则返回True,如果找到,返回False 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值