论有关第四讲课后作业
import randomsecret1 = 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")
需要做什么改进 你这两段不重复吗?…… 1 重复的是为了在第一次输入时显示大或小
2 要求当输入格式不当时提醒我输入错误
3 把我的代码改短,但我不想用times减,只想引入b来计数
#猜数字
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("恭喜你,答对了!")
是这个猜数字游戏- -? heidern0612 发表于 2020-8-24 15:51
你这两段不重复吗?……
是的,请看我补充的文字 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") Twilight6 发表于 2020-8-24 16:16
你如果 secret 随机到了 10 ,那么这个程序会直接关闭的,所以这里给你改成 9 了
最差的情况 ...
是的,这样的确简介了很多,但如果我想实现输入合法的提示应该再补充些什么呢? yhhpf 发表于 2020-8-24 15:54
是这个猜数字游戏- -?
没错,就这个代码而言也能解决问题,但我不太习惯太多赋值,在这里temp存在的意义是什么? 基本都给你加了注释,看不懂就再问吧
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") spontaneous 发表于 2020-8-24 16:50
没错,就这个代码而言也能解决问题,但我不太习惯太多赋值,在这里temp存在的意义是什么?
将用户输入赋值给temp,这样后续调用的时候方便。 伏惜寒 发表于 2020-8-24 17:26
基本都给你加了注释,看不懂就再问吧
大佬,暂时没学过try except continue指令,能否用while not temp.isdigit():指令修改? 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) 本帖最后由 伏惜寒 于 2020-8-24 18:06 编辑
spontaneous 发表于 2020-8-24 17:38
大佬,暂时没学过try except continue指令,能否用while not temp.isdigit():指令修改?
这个方法需要注意把a放到与if条件相等缩进的地方就只需要写一次a=int(temp)就行
页:
[1]