【问题标题】:Need help understanding this error text in python:需要帮助理解 python 中的这个错误文本:
【发布时间】:2012-10-14 03:44:35
【问题描述】:

好吧,基本上我写了一个不太漂亮的 GUI,它给出了随机的简单数学问题。它就像我想要的那样工作。然而,每次我点击进入时,空闲的 Shell 都会向我吐出红色。尽管如此,就像我说的,它会继续按照我的意愿运行。所以我很难理解为什么我的代码的这个特定部分会导致问题。为代码的长部分道歉:

from tkinter import Label, Frame, Entry, Button, LEFT, RIGHT, END
from tkinter.messagebox import showinfo
import random

class Ed(Frame):
    'Simple arithmetic education app'
    def __init__(self,parent=None):
        'constructor'
        Frame.__init__(self, parent)
        self.pack()
        self.tries = 0
        Ed.make_widgets(self)
        Ed.new_problem(self)

    def make_widgets(self):
        'defines Ed widgets'
        self.entry1 = Entry(self, width=20, bg="gray", fg ="black")
        self.entry1.grid(row=0, column=0, columnspan=4)
        self.entry1.pack(side = LEFT)
        self.entry2 = Entry(self, width=20, bg="gray", fg ="black")
        self.entry2.grid(row=2, column=2, columnspan=4)
        self.entry2.pack(side = LEFT)
        Button(self,text="ENTER", command=self.evaluate).pack(side = RIGHT)

    def new_problem(self):
        'creates new arithmetic problem'
        opList = ["+", "-"]
        a = random.randrange(10+1)
        b = random.randrange(10+1)
        op = random.choice(opList)
        if b > a:
            op = "+"
        self.entry1.insert(END, a)
        self.entry1.insert(END, op)
        self.entry1.insert(END, b)


    def evaluate(self):
        'handles button "Enter" clicks by comparing answer in entry to correct result'
        result = eval(self.entry1.get())
        if result == eval(self.entry2.get()):
            self.tries += 1
            showinfo(title="Huzzah!", message="That's correct! Way to go! You got it in {} tries.".format(self.tries))
            self.entry1.delete(0, END)
            self.entry2.delete(0, END)
            self.entry1.insert(END, self.new_problem())
        else:
            self.tries += 1
            self.entry2.delete(0, END)

这是我收到的消息:

Exception in Tkinter callback
Traceback (most recent call last):
  File "C:\Python32\lib\tkinter\__init__.py", line 1399, in __call__
    return self.func(*args)
  File "C:\Python32\Python shit\csc242hw4\csc242hw4.py", line 55, in evaluate
    self.entry1.insert(END, self.new_problem())
  File "C:\Python32\lib\tkinter\__init__.py", line 2385, in insert
    self.tk.call(self._w, 'insert', index, string)
_tkinter.TclError: wrong # args: should be ".52882960.52883240 insert index text"

【问题讨论】:

  • PS:不要使用 eval() 从字符串中获取值。如果您期望一个整数,请使用 int()。如果您期望浮动,请使用 float()。

标签: python tkinter traceback


【解决方案1】:

错误消息表明 Tkinter 认为它获取了错误数量的 args。

在回溯中进一步回顾,我们看到这一行导致了错误:

File "C:\Python32\Python shit\csc242hw4\csc242hw4.py", line 55, in evaluate
    self.entry1.insert(END, self.new_problem())

但这似乎是正确的参数数量!那到底是怎么回事?

问题是self.new_problem() 返回None。当它是None 时,看起来 Python 的 Tkinter 包装器没有传递参数。

要解决这个问题,请摆脱对 insert 的调用并将第 55 行更改为

self.new_problem()

这是有效的,因为您已经从 new_problem 内部调用了 self.entry.insert

【讨论】:

  • 太棒了!你是对的,我非常专注于使用插入语句,以至于忽略了我已经在之前的函数中这样做的事实,所以我需要做的就是调用它。非常感谢您花时间浏览我的代码!
猜你喜欢
  • 1970-01-01
  • 2020-08-06
  • 2012-07-11
  • 2014-12-20
  • 2015-09-16
  • 2019-08-11
  • 1970-01-01
  • 1970-01-01
  • 2016-07-08
相关资源
最近更新 更多