鱼C论坛

 找回密码
 立即注册
查看: 899|回复: 2

[已解决]请看代码,大佬救救我

[复制链接]
发表于 2021-9-16 19:31:10 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
import random
anwser=random.randint(1,1000)
count=0
print('(温馨提示:只有30次机会!!)')

while count<30:
    temp=input("猜一下我心里想的那个数字:")

    while not temp.isdigit:#为什么进入不到这个循环
        temp=input('请输入整数!')

    if temp.isdigit:
        guess=int(temp)
        if guess==anwser:
            print("猜对啦")
            break
        elif guess>anwser:
          print("大了")
        else:
            print("小了")
        count=count+1

        if count==30:
            print("机会都用完啦,不玩啦")

最佳答案
2021-9-16 19:53:54
少个括号

  1. import random
  2. anwser=random.randint(1,1000)
  3. count=0
  4. print('(温馨提示:只有30次机会!!)')

  5. while count<30:
  6.     temp=input("猜一下我心里想的那个数字:")

  7.     while not temp.isdigit():#为什么进入不到这个循环
  8.         temp=input('请输入整数!')

  9.     if temp.isdigit:
  10.         guess=int(temp)
  11.         if guess==anwser:
  12.             print("猜对啦")
  13.             break
  14.         elif guess>anwser:
  15.           print("大了")
  16.         else:
  17.             print("小了")
  18.         count=count+1

  19.         if count==30:
  20.             print("机会都用完啦,不玩啦")
复制代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-9-16 19:53:54 | 显示全部楼层    本楼为最佳答案   
少个括号

  1. import random
  2. anwser=random.randint(1,1000)
  3. count=0
  4. print('(温馨提示:只有30次机会!!)')

  5. while count<30:
  6.     temp=input("猜一下我心里想的那个数字:")

  7.     while not temp.isdigit():#为什么进入不到这个循环
  8.         temp=input('请输入整数!')

  9.     if temp.isdigit:
  10.         guess=int(temp)
  11.         if guess==anwser:
  12.             print("猜对啦")
  13.             break
  14.         elif guess>anwser:
  15.           print("大了")
  16.         else:
  17.             print("小了")
  18.         count=count+1

  19.         if count==30:
  20.             print("机会都用完啦,不玩啦")
复制代码
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-9-16 21:04:51 | 显示全部楼层

啊这。。。。蟹蟹
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-5-18 07:52

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表