简体   繁体   中英

Python tkinter TypeError: object of type 'NoneType' has no len()

I have made a programm, wher you can decide in a scale, how much words you want. When I take 1 in the scale and then try to print it in a label, I get the Error:

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()

Here is the code:

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()

Sorry if my English is bad.

Okay

So to start.

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

The reason you get your error is, that a and therefore WORDS are both NONE since label.configure(...) returns None.

I assume WORDS should be a list of words to choose from. I am not sure though what to make of your "a" did you want to populate it with the input word? If that is the case WORDS=(a) would work, but you have to move "a" inside "ok3"

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

And second. It should retrieve the value of the input.

    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)

hope this helps LG Daniel

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM