鱼C论坛

 找回密码
 立即注册
查看: 1705|回复: 12

[已解决]论有关第四讲课后作业

[复制链接]
发表于 2020-8-24 15:33:41 | 显示全部楼层 |阅读模式

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

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

x
import random
secret1 = random.randint(1,100)
secret2 = random.randint(1,10)
b = secret2
print("Let's play a game")
temp = input("Guess a number and see what'll happen")
a = int(temp)
if a == secret1:
    print("I have to admit your rightness")
    print("WTF handsome")
else:
    if a > secret1:
        print("Dont thou think it too bulky?")
        print("Ohhhhhhhh")
        b = b+1
    else:
        print("just like your penis")
        print("Fuck it")
        b = b+1
while a != secret1 and b < 10:
    temp = input("Wrong number")
    a = int(temp)
    if a == secret1:
        print("I have to admit your rightness")
        print("WTF handsome")
    else:
        if a > secret1:
            print("Dont thou think it too bulky?")
            print("Ohhhhhhhh")
            b = b+1
        else:
            print("just like your penis")
            print("Fuck it")
            b = b+1
print("Time is up")

需要做什么改进
最佳答案
2020-8-24 17:26:32
基本都给你加了注释,看不懂就再问吧
import random
#删掉了很多重复代码
secret1 = random.randint(1,100)
secret2 = random.randint(1,9)#至少一次机会
#初始化ab
b = 0
a = 0

while a != secret1 and b < 10:
    try:#输入错误检测
        if b == 0:#判断是否是第一次猜,下面如果要针对第一次猜数字改变print的内容,可以用同样的方法
            a = int(input("Guess a number and see what'll happen:"))
        else:
            a = int(input("Wrong number"))
        if a == secret1:
            print("I have to admit your rightness")
            print("WTF handsome")
        else:
            if a > secret1:
                print("Dont thou think it too bulky?")
                print("Ohhhhhhhh")
            else:
                print("just like your penis")
                print("Fuck it")
            b = b+1#b放在这就只用一次就行了
    except:#输入错误时反馈
        print("请输入数字")
        #进行下一次循环
        continue
print("Time is up")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-8-24 15:51:14 | 显示全部楼层
你这两段不重复吗?……
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-8-24 15:54:38 | 显示全部楼层
1 重复的是为了在第一次输入时显示大或小
2 要求当输入格式不当时提醒我输入错误
3 把我的代码改短,但我不想用times减,只想引入b来计数

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

使用道具 举报

发表于 2020-8-24 15:54:42 | 显示全部楼层
#猜数字
import random
temp = input("猜1-10之间的整数(共3次机会,当前第1次):")
secret = random.randint(1,10)
times = 1

while not temp.isdigit():
    print("请输入合法数字")
    temp = input("猜1-10之间的整数(共3次机会,当前第" + str(times) + "次):")

guess = int(temp)

while (times != 3) and (guess != secret):
    if guess > secret :
        print("大了!")
    else:
        print("小了")
    times += 1
    temp = input("猜1-10之间的整数(共3次机会,当前第" + str(times) + "次):")  
    guess = int(temp)
if (times == 3) and (guess != secret):
    print("已经3次,游戏结束!正确答案是:" + str(secret) )
else:
    print("恭喜你,答对了!")

是这个猜数字游戏- -?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-8-24 15:56:02 | 显示全部楼层
heidern0612 发表于 2020-8-24 15:51
你这两段不重复吗?……

是的,请看我补充的文字
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-24 16:16:07 | 显示全部楼层
spontaneous 发表于 2020-8-24 15:56
是的,请看我补充的文字





你如果 secret 随机到了 10 ,那么这个程序会直接关闭的,所以这里给你改成 9 了

最差的情况也有机会输入一次,还有这里两段代码重复了,代码显的比较丑合并一起比较好
import random
secret1 = random.randint(1,100)
secret2 = random.randint(1,9)
a = ''
print("Let's play a game")
print("Guess a number and see what'll happen",end='')
while a != secret1 and secret2 < 10:
    a = int(input())
    if a == secret1:
        print("I have to admit your rightness")
        print("WTF handsome")
    else:
        if a > secret1:
            print("Dont thou think it too bulky?")
            print("Ohhhhhhhh")
            secret2 = secret2 + 1
        else:
            print("just like your penis")
            print("Fuck it")
            secret2 = secret2 + 1
    print("Wrong number",end='')
print("Time is up")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-8-24 16:49:29 | 显示全部楼层
Twilight6 发表于 2020-8-24 16:16
你如果 secret 随机到了 10 ,那么这个程序会直接关闭的,所以这里给你改成 9 了

最差的情况 ...

是的,这样的确简介了很多,但如果我想实现输入合法的提示应该再补充些什么呢?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-8-24 16:50:47 | 显示全部楼层
yhhpf 发表于 2020-8-24 15:54
是这个猜数字游戏- -?

没错,就这个代码而言也能解决问题,但我不太习惯太多赋值,在这里temp存在的意义是什么?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-24 17:26:32 | 显示全部楼层    本楼为最佳答案   
基本都给你加了注释,看不懂就再问吧
import random
#删掉了很多重复代码
secret1 = random.randint(1,100)
secret2 = random.randint(1,9)#至少一次机会
#初始化ab
b = 0
a = 0

while a != secret1 and b < 10:
    try:#输入错误检测
        if b == 0:#判断是否是第一次猜,下面如果要针对第一次猜数字改变print的内容,可以用同样的方法
            a = int(input("Guess a number and see what'll happen:"))
        else:
            a = int(input("Wrong number"))
        if a == secret1:
            print("I have to admit your rightness")
            print("WTF handsome")
        else:
            if a > secret1:
                print("Dont thou think it too bulky?")
                print("Ohhhhhhhh")
            else:
                print("just like your penis")
                print("Fuck it")
            b = b+1#b放在这就只用一次就行了
    except:#输入错误时反馈
        print("请输入数字")
        #进行下一次循环
        continue
print("Time is up")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-24 17:32:01 | 显示全部楼层
spontaneous 发表于 2020-8-24 16:50
没错,就这个代码而言也能解决问题,但我不太习惯太多赋值,在这里temp存在的意义是什么?

将用户输入赋值给temp,这样后续调用的时候方便。
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-8-24 17:38:58 | 显示全部楼层
伏惜寒 发表于 2020-8-24 17:26
基本都给你加了注释,看不懂就再问吧

大佬,暂时没学过try except continue指令,能否用while not temp.isdigit():指令修改?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-24 18:03:18 | 显示全部楼层
spontaneous 发表于 2020-8-24 17:38
大佬,暂时没学过try except continue指令,能否用while not temp.isdigit():指令修改?

try是用来检测程序出错的,因为int()函数里面的内容必须是能改成数字类型的,输入字符或文字等会出错,
try检测到错误后用except处理,continue是直接进入下一次循环,不会用就删掉吧。
a = int(input("Guess a number and see what'll happen:"))
那就把这句改成
temp = input('猜数字')
while not temp.isdigit():
    temp = input("抱歉,您的输入有误,请输入一个整数:")
a=int(temp)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-8-24 18:04:31 | 显示全部楼层
本帖最后由 伏惜寒 于 2020-8-24 18:06 编辑
spontaneous 发表于 2020-8-24 17:38
大佬,暂时没学过try except continue指令,能否用while not temp.isdigit():指令修改?


这个方法需要注意把a放到与if条件相等缩进的地方就只需要写一次a=int(temp)就行
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-19 03:18

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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