鱼C论坛

 找回密码
 立即注册
查看: 2493|回复: 3

[新人报道] 随机数值小游戏 这样写怎么简化啊

[复制链接]
发表于 2021-7-15 11:47:23 | 显示全部楼层 |阅读模式

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

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

x
import random
answer = random.randint(1,10)
i = 3
temp = input('请你猜猜我现在心中想的是那个数字:')
while i > 1 :
    i = i - 1
    if temp.isdigit() == 0:
        print('输入内容不合法,',end='')
        temp = input('请输入一个整数:')
    else:
        guess = int(temp)
        if guess>0 and guess <= 10:
            if guess == answer and i == 2:
                print('你是我肚子里的蛔虫吗!')
                print('不过答对了也没有奖励哦!')
                break
            elif guess == answer and i != 2:
                print('不错,答对了!')
                break
            elif guess > answer:
                print('大了大了,',end='')
                temp = input('再给你一次机会:')
            else:
                print('小了小了,',end='')
                temp = input('再给你一次机会:')
        else:
            print('输入不合法,',end='')
            temp = input('请输入0-10之间的整数:')

if  temp.isdigit() == 0:
        print('输入内容不合法,不过没机会了!')
else:
    guess = int(temp)
    if guess == answer and i == 1:
        print('机会把握住了,答对了!')
    elif guess == answer and i != 1:
        None
    else:
        print('很可惜,没机会了!')
print('game over')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-7-15 11:56:44 | 显示全部楼层
import random
answer = random.randint(1,10)
i = 3
temp = input('请你猜猜我现在心中想的是那个数字:')
while i > 1 :
    i = i - 1
    if temp.isdigit() == 0:
        print('输入内容不合法,',end='')
        temp = input('请输入一个整数:')
    else:
        guess = int(temp)
        if guess>0 and guess <= 10:
            if guess == answer and i == 2:
                print('你是我肚子里的蛔虫吗!')
                print('不过答对了也没有奖励哦!')
                break
            elif guess == answer and i != 2:
                print('不错,答对了!')
                break
            elif guess > answer:
                print('大了大了,',end='')
                temp = input('再给你一次机会:')
            else:
                print('小了小了,',end='')
                temp = input('再给你一次机会:')
        else:
            print('输入不合法,',end='')
            temp = input('请输入0-10之间的整数:')

if  temp.isdigit() == 0:
        print('输入内容不合法,不过没机会了!')
else:
    guess = int(temp)
    if guess == answer and i == 1:
        print('机会把握住了,答对了!')
    elif guess == answer and i != 1:
        None
    else:
        print('很可惜,没机会了!')
print('game over')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-15 13:53:25 | 显示全部楼层
本帖最后由 jackz007 于 2021-7-15 13:55 编辑
import random
answer = random . randint(1,10)
t = 3
print('请你猜猜我现在心中想的是那个数字')
print('你总共有', t , '次机会')
for i in range(t):
    while True:
        print()
        temp = input('请输入一个整数:') . strip()
        if temp:
            try:
                guess = int(temp)
                break
            except:
                print('输入不合法!')
        else:
            break
    if temp:
        if guess == answer:
            if i == 0:
                print('你是我肚子里的蛔虫吗!')
                print('不过答对了也没有奖励哦!')
            else:
                print('不错,答对了!')
            break
        else:
            if guess > answer:
                print('大了大了,' , end = '')
            else:
                print('小了小了,' , end = '')                           
            if i < t - 1:
                print('再给你一次机会')           
    else:
        break
else:
    print('很可惜,没机会了!')
print('game over')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-7-15 14:13:52 | 显示全部楼层

刚开始学   谢谢指教
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-8 04:40

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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