Python tkinter TypeError:类型为' NoneType'的对象没有len()

时间:2014-07-10 17:46:54

标签: python user-interface tkinter

我制作了一个程序,你可以在一个尺度上决定你想要多少单词。当我在刻度中取1并尝试在标签中打印时,我得到错误:

Exception in Tkinter callback
Traceback (most recent call last):
File "C:\Python33\lib\tkinter\__init__.py", line 1475, in __call__
return self.func(*args)
File "C:\Users\Eduard\Desktop\Zeugs\python\test.py", line 69, in ok3
label['text']=random.choice(WORDS)
File "C:\Python33\lib\random.py", line 249, in choice
i = self._randbelow(len(seq))
TypeError: object of type 'NoneType' has no len()

以下是代码:

import tkinter as tk
from tkinter import *
import random
from functools import partial

class SampleApp(tk.Tk):
    def __init__(self, *args, **kwargs):
        tk.Tk.__init__(self, *args, **kwargs)

        container= tk.Frame(self)
        container.pack(side="top", fill="both", expand=True)
        container.grid_rowconfigure(0, weight=1)
        container.grid_columnconfigure(0, weight=1)

        self.frames={}
        for F in (mode2, scale1):
            frame= F(container, self)
            self.frames[F]=frame
            frame.grid(row=0, column=0, sticky="nsew")

        self.show_frame(mode2)

    def show_frame(self, c):
        frame=self.frames[c]
        frame.tkraise()

class mode2(tk.Frame):
    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)

        def antmenge(self):
            label1["text"]="Mögliche Antworten: " \
                + str(antmengen.get()) + " "

        label1=tk.Label(self, text="Mögliche Antworten: 0 Wörter", width=25)
        label1.pack()

        antmengen=IntVar()
        antmengen.set(0)

        antm=Scale(self, width=20, length=200, orient="vertical", from_=0, to=20,
        resolution=1, tickinterval=10, label="Wörter", command=antmenge(self),
        variable=antmengen)
        antm.pack()

        def abfrage():
            if antmengen.get()==1:
                button3=Button(self, text="push again", command=lambda: controller.show_frame(scale1))
                button3.pack()

        button2=tk.Button(self, text="push", command=abfrage)
        button2.pack()

class scale1(tk.Frame):
    def __init__(self, parent, controller):
        tk.Frame.__init__(self, parent)
        label1=Label(self, text="Wort1")
        label1.pack()
        wort1auf=Entry(self)
        wort1auf.pack()

        label=tk.Label(self, text=" ")
        label.pack()

        a=label.configure(text=(wort1auf.get()))

        def ok3(label):
            WORDS=(a)
            label['text']=random.choice(WORDS)

        button1=tk.Button(self, text="push", command=partial(ok3, label))
        button1.pack()

if __name__== "__main__":
    app=SampleApp()
    app.mainloop()

对不起,如果我的英语不好。

1 个答案:

答案 0 :(得分:0)

开始吧。

    a=label.configure(text=(wort1auf.get()))
    def ok3(label):
        WORDS=(a)
        label['text']=random.choice(WORDS)

你得到错误的原因是,a因此WORDS都是NONE 因为label.configure(...)返回None。

我假设WORDS应该是一个可供选择的单词列表。我不确定你的“a”是什么,你想用输入词填充它吗?如果是这样的话,WORDS =(a)会起作用,但你必须在“ok3”内移动“a”

    def ok3(label):
        a=label.configure(text=(wort1auf.get()))
        WORDS=(a)
        label['text']=random.choice(WORDS)

第二。它应该检索输入的值。

    def ok3(label):
        WORDS=(wort1auf.get()) # this will choose a random letter out of your input. 
        #WORDS=(wort1auf.get(),) # this will choose a the input word, since it is the only word inside the tuple. 
        WORDS=(a)
        label['text']=random.choice(WORDS)
希望这会有所帮助 LG 丹尼尔