鱼C论坛

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

在猜数字游戏中加入判断输入数是否为整数的问题

[复制链接]
发表于 2019-12-28 13:41:55 | 显示全部楼层 |阅读模式

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

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

x
麻烦诸位了。
我调好了这个代码后

temp = input('猜数字')
m = str(temp)
while m.isdigit() != isinstance(1,int):
    print('抱歉,输入不合法')
    temp = input('请输入一个整数')
    m = str(temp)
else:
    print('开始游戏吧')

想把它带入到写的猜数字游戏中(👇),但是输入小数后无法判断。

import random

secret = random.randint(1,10)
temp = input('猜数字,1~10\n')
guess = int(temp)
m = str(temp)
count = 1
while m.isdigit() != isinstance(1,int):
    print('输入错误',end='')
    temp = input('请重新输入一个整数')
    m = str(temp)
else:
    while guess != secret and count < 3:
        if guess > secret:
            print('大啦大啦',end='')
        else:
            print('小了小了',end='')
        temp = input('再试一次吧')
        guess = int(temp)
        count += 1
    if guess == secret and count < 3:
        print('恭喜你答对啦')
    else:
        print('game over!')

我不太清楚具体哪里有问题,请各位大佬给萌新指导一下,感激不尽
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2019-12-28 20:51:37 | 显示全部楼层
我重新写了一下,你看看
import random
secret = random.randint(1,10)
guess = 0
times = 3
while guess != secret and times:
    temp = input('请输入一个数字:')
    while not temp.isdigit():
        print('输入错误',end='\n')
        temp = input('请重新输入一个整数:')
    guess = int(temp)
    times -= 1
    if guess > secret:
        print('大啦大啦,再试一次吧',end='\n')
    elif guess < secret:
        print('小了小了,再试一次吧',end='\n')
    else :
        print('恭喜你答对啦')
print('game over!')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2019-12-30 16:52:13 | 显示全部楼层
首先我复制了你的代码,输入小数,报错如下:
5.5
Traceback (most recent call last):
  File "C:\Users\aaaa\bbbb\Python\Code\daily script.py", line 5, in <module>
    guess = int(temp)
ValueError: invalid literal for int() with base 10: '5.5'
我个人理解的原因是当temp复制为字符串'5.5'时, int(temp)无法将‘’5.5‘’转换为整型。
针对“当输入非整型内容时,让运行结果可以提示输入错误”这个目的,修改代码如下:
temp = input('猜数字,1~10:')
while 1:
    if temp.isdigit() == False:
        print('输入错误', end = '')
        temp = input('请重新输入一个整数:')
        continue
抛砖引玉,希望能帮到你。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-12 16:17

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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