easygui的integerbox出错
import easygui as gimport 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: '' 这一句
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("游戏结束,不玩啦^_^") 这个错误好像是类型转换错误,不能转换为整型,你可以看看说明文档http://easygui.sourceforge.net/sourceforge_site_as_of_2014_11_21/download/version_0.96/doc/pydoc/easygui.html 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("游戏结束,不玩啦^_^")
页:
[1]