1

The following is a simple tkinter program that displays an empty window:

# firstTkinter2.py
from Tkinter import Tk, Label
top = Tk()
l = Label(top, "Hello World")
l.pack()
# Give the window a title.
top.title("My App")
# Change the minimum size.
top.minsize(400, 400)
# Change the background colour.
top.configure(bg = "green")
# Run the widget.
top.mainloop()

I run the above code but it encountered an error:

zhiwei@zhiwei-Lenovo-Rescuer-15ISK:~/Documents/python programs/tkinter$ python tk2.py
Traceback (most recent call last):
  File "tk2.py", line 4, in <module>
    l = Label(top, "Hello World")
  File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 2600, in __init__
    Widget.__init__(self, master, 'label', cnf, kw)
  File "/usr/lib/python2.7/lib-tk/Tkinter.py", line 2094, in __init__
    for k in cnf.keys():
AttributeError: 'str' object has no attribute 'keys'

How can I fix this error and let it run properly?

2 Answers 2

4

Try to replace:

l = Label(top, "Hello World")

on

l = Label(top, text="Hello World")
#              ^^^^^^^
Sign up to request clarification or add additional context in comments.

Comments

1

Use Label(top, text="Hello World")

You have to use the text argument.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.