Python暑期实践7.26

动手写

分数判断

score = int(input("请输入一个分数:"))
if 100>= score >=90:
    print("A")
if 90> score >= 80:
    print("B")
if 80> score >=60:
    print("C")
if 60>score >=0:
    print("D")
if score < 0 or score >100:
    print("输入错误")
    

三元操作符的分数判断

score = int(input("请输入一个分数:"))
level = "A" if 100>= score >= 90 else "B" if 90 > score >= 80 else "C" if 80 > score >= 60 else "D" if 60 > score >= 0 else print ('输入错误!')

print(level)

"""if x<y:
    small = x
   else:
    small=y
    和
    small = x if x<y else y
    是相同的
    这就是三元操作符
"""

小游戏

import random

secret = random.randint(1,10)
temp = input("不妨猜一下thb心里想的是哪个数字:")
guess = int(temp)
times = 1

while (guess != secret) and (times < 3):
    if guess > secret:
        print("哥,大了大了~~~")
    else:
        print("嘿,小了小了~~~")

    temp = input("请再试试吧:")
    guess = int(temp)
    times = times + 1

if (times <=3) and (guess == secret):
        print("哎呀猜中了,泰深都猜不中,你比泰深还nb!")

else:
        print("这都猜不中?点了点了。")
    

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值