窝在家里写程序 发表于 2020-5-15 13:39:43

求大神解题

import random

times = 3
secret = random.randint(1,10)

print('------------------我爱鱼C工作室------------------')
guess = 0
print("不妨猜一下小甲鱼现在心里想的是哪个数字:", end=" ")

while (guess != secret) and (times > 0):
    temp = input()
   
    if temp.isdigit():
      guess = int(temp)
      if guess == secret:
            print("我草,你是小甲鱼心里的蛔虫吗?!")
            print("哼,猜中了也没有奖励!")
      else:
            if guess > secret:
                print("哥,大了大了~~~")
            else:
                print("嘿,小了,小了~~~")
            if times > 1:
                print("再试一次吧:", end='')
            else:
                print("机会用光咯T_T")
    else:
      print("抱歉,您的输入有误,请输入一个整数:", end='')

    times = times - 1 # 用户每输入一次,可用机会就-1

print("游戏结束,不玩啦^_^")



不懂:while (guess != secret) and (times > 0):      是干嘛的

Twilight6 发表于 2020-5-15 13:41:04

while (guess != secret) and (times > 0):
while 是循环作用 , guess != secret 和 times > 0 两个条件都满足时候,可以继续循环 否则就退出循环

一文先生 发表于 2020-5-15 16:14:47

意思是:①当你猜的(guess)和小甲鱼心里随机想的(secret)不一样时;②还有当你还能猜的次数(time)不等于0时。满足①②两个条件,才可以继续循环执行下面的内容,不然则推出此while循环{:5_109:}
页: [1]
查看完整版本: 求大神解题