Click here to Skip to main content
15,891,785 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,
i m new in python coding. i got a problem while running my code.this is my code.

from Tkinter import *
XML
class example3:
    def _init_(self, master):
        self.lbl=Label(master, text="press button below to exit")
        self.lbl.pack()
        self.btn=Button(master, text="quit", command= quit)
        self.btn.pack()

        root=Tk()
        ex3=example3(root)
        root.mainloop()
        def quit(self):

        import sys; sys.exit()



this is the error "TypeError: this constructor takes no arguments".
please help me out.

kudos
neaS
Posted
Updated 12-Jul-12 19:40pm
v2
Comments
Sergey Alexandrovich Kryukov 13-Jul-12 20:08pm    
In what line? And what's unclear in the error message? Some constructor has no argument, but you supply some.
--SA

1 solution

It looks like the __init__ method may not be overridden properly. You need two underscores before and after the word init, not just one.

Also, from the indentation, it looks like the instance is being created from with it's own __init__ method, or have you skipped some code somewhere?

More clarity, if possible please.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900