鱼C论坛

 找回密码
 立即注册
查看: 2081|回复: 4

[已解决]第五课课后习题动手题

[复制链接]
发表于 2020-3-7 21:54:49 | 显示全部楼层 |阅读模式

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

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

x
改进小游戏,提醒用户输入错误格式
import random
times = 3
secret = random.randint(1,10)
print('Welcome!!!!!!')
guess = 0
print("Guess what number do I think?", end = " ")
while (guess != secret) and (times > 0):
    guess = int(input())
    while type(guess) != type(1):#应该是这里出问题了
        print("Illegal type!")
    times = times - 1
    if guess == secret:
        print("Bingo!")
        print("Huh, without prize!")
    else:
        if guess > secret:
            print("Too big!")
        else:
            print("Too small!")
        if times > 0:
            print("Try again!")
        else:
            print("You are out of chance!")
print("Game over!")
最佳答案
2020-3-7 22:12:19
Easier 发表于 2020-3-7 22:11
我知道了,但是如果这样写 guess的赋值就改变了,再重新输入其他数就会报错

这样试试:
import random

times = 3
secret = random.randint(1, 10)
print('Welcome!!!!!!')
guess = 0
print("Guess what number do I think?", end=" ")
while (guess != secret) and (times > 0):
    guess = input()
    while not guess.isdigit():
        guess = input("Illegal type! Please input: ")
    guess = int(guess)
    times = times - 1
    if guess == secret:
        print("Bingo!")
        print("Huh, without prize!")
    else:
        if guess > secret:
            print("Too big!")
        else:
            print("Too small!")
        if times > 0:
            print("Try again!")
        else:
            print("You are out of chance!")
print("Game over!")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-7 21:57:53 | 显示全部楼层
你的思路是错的,guess = int(input()) 这一句已经将 guess 转化为 int() 了,如果用户不输入整数会直接报错。

而且判断一个字符串可不可以强制转化为整数,需要使用字符串的 isdigit() 方法。

代码帮你改了:
import random

times = 3
secret = random.randint(1, 10)
print('Welcome!!!!!!')
guess = 0
print("Guess what number do I think?", end=" ")
while (guess != secret) and (times > 0):
    guess = input()
    while not guess.isdigit():
        guess = input("Illegal type! Please input: ")
    times = times - 1
    if guess == secret:
        print("Bingo!")
        print("Huh, without prize!")
    else:
        if guess > secret:
            print("Too big!")
        else:
            print("Too small!")
        if times > 0:
            print("Try again!")
        else:
            print("You are out of chance!")
print("Game over!")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-3-7 22:11:25 | 显示全部楼层
zltzlt 发表于 2020-3-7 21:57
你的思路是错的,guess = int(input()) 这一句已经将 guess 转化为 int() 了,如果用户不输入整数会直接报 ...

我知道了,但是如果这样写
guess = input("Illegal type! Please input: ")
guess的赋值就改变了,再重新输入其他数就会报错
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-7 22:12:19 | 显示全部楼层    本楼为最佳答案   
Easier 发表于 2020-3-7 22:11
我知道了,但是如果这样写 guess的赋值就改变了,再重新输入其他数就会报错

这样试试:
import random

times = 3
secret = random.randint(1, 10)
print('Welcome!!!!!!')
guess = 0
print("Guess what number do I think?", end=" ")
while (guess != secret) and (times > 0):
    guess = input()
    while not guess.isdigit():
        guess = input("Illegal type! Please input: ")
    guess = int(guess)
    times = times - 1
    if guess == secret:
        print("Bingo!")
        print("Huh, without prize!")
    else:
        if guess > secret:
            print("Too big!")
        else:
            print("Too small!")
        if times > 0:
            print("Try again!")
        else:
            print("You are out of chance!")
print("Game over!")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-3-7 22:14:43 | 显示全部楼层

懂了,谢谢大佬
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-12 04:01

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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