python不存在的参数

时间:2014-04-14 19:12:30

标签: python class arguments typeerror

是的,所以我已经用错误的执行顺序克服了问题,多亏了你,但我有更多的。

xcv.py(以前的welcome.py)

#!/usr/bin/env python2.7
#-*- encoding: utf-8 -*
from definitions import *

def NewLabel(text, column, row, self):
    label=Label(self, text=text)
    label.grid(column=column,row=row)

def NewButton(text, action, column, row, self, sticky="N"):
    button=Button(self, text=text, command=action)
    button.grid(column=column,row=row,sticky=sticky)

def OnExit():
    quit()

class encode(Tk):
    def __init__(self,parent):
        Tk.__init__(self,parent)
        self.parent=parent
        self.initialize()

    def initialize(self):
        widgets().NewLabel(u'Welcome to Brunhilda GUI alpha v0.0',0,0,self)
        widgets().NewLabel(u'What do you want to do?',0,1,self)

 #       widgets().NewButton(u'1. Encrypt file',OnEncode(None),0,2,self)
 #       widgets().NewButton(u'2. Decrypt file',OnDecode,0,3,self)
 #       widgets().NewButton(u'Exit',actions().OnExit(),0,4,self)


if __name__=="__main__":
    app=encode(None)
    app.title('Brunhilda GUI v0.0 encoder')
    app.mainloop()

definitions.py

from Tkinter import *
import decoding
import encoding
import zxc

version="v0.0"

class widgets():
    def NewLabel(text, column, row, self):
        label=Label(self, text=text)
        label.grid(column=column,row=row)

    def NewEntry(self, text, column, row, action, key='<Return>', sticky="EW"):
        entry=Entry(self, textvariable=StringVar())
        entry.grid(column=column, row=row, sticky=sticky)
        entry.bind(key, action)
        StringVar().set(text)

    def NewButton(text, action, column, row, self, sticky="N"):
        button=Button(self, text=text, command=action)
        button.grid(column=column,row=row,sticky=sticky)
        print asdf
class actions():
    def OnEncode(self):
        try:
            zxc.encode(self)
            quit()
        except KeyboardInterrupt:
            print "goodbye"
            quit()

    def OnDecode():
        try:
            decoding.decode(version)
        except KeyboardInterrupt:
            print "Goodbye"
            quit()

    def OnExit():
        quit()

当调用任何小部件或动作时,它会继续告诉我它被赋予了太多的参数

TypeError: NewLabel() takes exactly 4 arguments (5 given)

另外,我认为我在定义课上做得很糟糕,但我不知道如何让它们更好

  • 修改 好的,我现在明白了。我忘了我应该添加&#34; self&#34;到课堂上的定义。 待关闭

1 个答案:

答案 0 :(得分:1)

self是一个表示类实例的参数,并且始终是由类实例调用的任何函数的第一个参数。

假设我们有A级

class A:
    def b(self):
        print "hello"

要调用函数b,我首先需要创建一个A

的实例
>>> my_a = A()
>>> my_a.b()
hello

现在你可能想知道..“如果没有给出self参数,为什么a.b()会起作用?”

这是因为当您使用类的实例调用函数时,它会自动将该实例作为第一个参数放置!

为了更有意义,你可以这样想(它确实有效)..

>>> my_a = A()
>>> A.b(my_a)
hello