鱼C论坛

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

[已解决]easygui的integerbox出错

[复制链接]
发表于 2020-12-21 19:25:07 | 显示全部楼层 |阅读模式

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

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

x
import easygui as g
import random


secret = random.randint(1,10)
temp = g.integerbox(msg='不妨猜一下小甲鱼现在心里想的是哪个数字:', title='数字小游戏', default='', lowerbound=1, upperbound=10)
# guess = int(temp)
while guess != secret:
    temp = g.integerbox(msg='哎呀,猜错了,请重新输入吧:', title='数字小游戏', default='', lowerbound=1, upperbound=10)
    # guess = int(temp)
    if guess == secret:
        g.msgbox("我草,你是小甲鱼心里的蛔虫吗?!")
        g.msgbox("哼,猜中了也没有奖励!")
    else:
        if guess > secret:
            g.msgbox("哥,大了大了~~~")
        else:
            g.msgbox("嘿,小了,小了~~~")
g.msgbox("游戏结束,不玩啦^_^")

easygui课后题第一题,用integerbox会报错:
Traceback (most recent call last):
  File "D:/backup/python/fishc/第三次学习的练习代码/035-easygui实现猜数字小游戏.py", line 6, in <module>
    temp = g.integerbox(msg='不妨猜一下小甲鱼现在心里想的是哪个数字:', title='数字小游戏', default='', lowerbound=1, upperbound=10)
  File "C:\Users\DDD\AppData\Local\Programs\Python\Python36\lib\easygui\boxes\derived_boxes.py", line 288, in integerbox
    default = convert_to_type(default, int, "default")
  File "C:\Users\DDD\AppData\Local\Programs\Python\Python36\lib\easygui\boxes\derived_boxes.py", line 241, in convert_to_type
    ret_value = new_type(input_value)
ValueError: invalid literal for int() with base 10: ''
最佳答案
2020-12-21 20:00:02
        这一句
temp = g.integerbox(msg='不妨猜一下小甲鱼现在心里想的是哪个数字:', title='数字小游戏', default='', lowerbound=1, upperbound=10)
        选项:default='' 出了问题,似乎不允许使用空串。
import easygui as g
import random
secret , guess = random . randint(1,10) , 0
while True:
    guess = g . integerbox(msg = '不妨猜一下小甲鱼现在心里想的是哪个数字:' , title = '数字小游戏' , default = str(guess) , lowerbound = 1 , upperbound = 10)
    if guess == secret:
        g . msgbox("我草,你是小甲鱼心里的蛔虫吗?!")
        g . msgbox("哼,猜中了也没有奖励!")
        break
    else:
        if guess > secret:
            g . msgbox("哥,大了大了~~~")
        else:
            g . msgbox("嘿,小了,小了~~~")
g.msgbox("游戏结束,不玩啦^_^")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-12-21 20:00:02 | 显示全部楼层    本楼为最佳答案   
        这一句
temp = g.integerbox(msg='不妨猜一下小甲鱼现在心里想的是哪个数字:', title='数字小游戏', default='', lowerbound=1, upperbound=10)
        选项:default='' 出了问题,似乎不允许使用空串。
import easygui as g
import random
secret , guess = random . randint(1,10) , 0
while True:
    guess = g . integerbox(msg = '不妨猜一下小甲鱼现在心里想的是哪个数字:' , title = '数字小游戏' , default = str(guess) , lowerbound = 1 , upperbound = 10)
    if guess == secret:
        g . msgbox("我草,你是小甲鱼心里的蛔虫吗?!")
        g . msgbox("哼,猜中了也没有奖励!")
        break
    else:
        if guess > secret:
            g . msgbox("哥,大了大了~~~")
        else:
            g . msgbox("嘿,小了,小了~~~")
g.msgbox("游戏结束,不玩啦^_^")

评分

参与人数 1荣誉 +1 鱼币 +1 收起 理由
小木船 + 1 + 1 鱼C有你更精彩^_^

查看全部评分

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

使用道具 举报

发表于 2020-12-21 20:03:52 | 显示全部楼层
这个错误好像是类型转换错误,不能转换为整型,你可以看看说明文档http://easygui.sourceforge.net/sourceforge_site_as_of_2014_11_21/download/version_0.96/doc/pydoc/easygui.html
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-12-22 18:09:58 | 显示全部楼层
jackz007 发表于 2020-12-21 20:00
这一句

        选项:default='' 出了问题,似乎不允许使用空串。

你说得对,default默认设一个数字,就可以执行了。这个例子,我直接把这个参数去掉了,因为不需要默认数字,这样也是可以的。下边是我修改后的代码
import easygui as g
import random


secret = random.randint(1,10)
guess = g.integerbox(msg='不妨猜一下小甲鱼现在心里想的是哪个数字:', title='数字小游戏', lowerbound=1, upperbound=10)
while guess != secret:
    guess = g.integerbox(msg='哎呀,猜错了,请重新输入吧:', title='数字小游戏', lowerbound=1, upperbound=10)
    if guess == secret:
        g.msgbox("我草,你是小甲鱼心里的蛔虫吗?!")
        g.msgbox("哼,猜中了也没有奖励!")
    else:
        if guess > secret:
            g.msgbox("哥,大了大了~~~")
        else:
            g.msgbox("嘿,小了,小了~~~")
g.msgbox("游戏结束,不玩啦^_^")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-17 01:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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