Python错误(初学者)

时间:2011-07-19 23:50:18

标签: python wxpython

我在最后一天学习python使用我发现的在线教程,一切都进展顺利,直到我收到一个我似乎无法解决的错误。

我今天使用的网站是http://wiki.wxpython.org/Getting%20Started

我一直没有遇到麻烦。当我尝试从教程运行程序时,我收到以下错误:

  

追踪(最近的呼叫最后):
  文件“C:/Python27/test.pyw”,第4行,中   class MainWindow(wx.Frame):
  在MainWindow中输入文件“C:/Python27/test.pyw”,第8行   wx.Frame。的初始化(个体,父母,标题=标题,大小=(200,-1))
  NameError:名称'self'未定义

import wx
import os

class MainWindow(wx.Frame):
    def __init__(self,parent,title):
        self.dirname=''

    wx.Frame.__init__(self,parent,title=title,size=(200,-1))
    self.control=wx.TextCtrl(self,style=wx.TE_MULTILINE)
    self.CreateStatusBar()

    filemenu=wx.Menu()
    menuOpen=filemenu.Append(wx.ID_OPEN,'&Open','Open a file to edit')
    menuAbout=filemenu.Append(wx.ID_ABOUT,"&About","Information about this program")
    menuExit=filemenu.Append(wx.ID_EXIT,"E&xit","Terminate the program")

    menuBar=wx.MenuBar()
    menuBar.Append(filemenu,'&File')
    self.SetMenuBar(menuBar)

    self.Bind(wx.EVT_MENU,self.OnOpen,menuOpen)
    self.Bind(wx.EVT_MENU,self.OnExit,menuExit)
    self.Bind(wx.EVT_MENU.self.OnAbout,menuAbout)

    self.sizer2=wx.BoxSizer(wx.HORIZONTAL)
    self.buttons=[]
    for i in range(0,6):
        self.buttons.append(wx.Button(self,-1,'button &'+str(i)))
        self.sizer2.Add(self.buttons[i],1,wx.EXPAND)

        self.SetSizers(self.sizer)
        self.SetAutoLayout(1)
        self.sizer.Fit(self)
        self.Show()

    def OnAbout(self,e):
        dlg=wx.MessageDialog(self,'A sample editor \n in wxPython', 'About sample editor', wx.OK)
        dlg.ShowModal()
        dlg.Destroy()

    def OnExit(self,e):
        self.Close(True)

    def OnOpen(self,e):
        dlg=wx.FileDialog(self,"choose a file", self.dirname,"","*.*",wx.OPEN)
        if dlg.ShowModal() == wx.ID_OK:
            self.filename=dlg.GetFilename()
            self.dirname=dlg.GetDirectory()
            f=open(os.path.join(self.dirname,self.filename),'r')
            self.control.SetValue(f.read())
            f.close()
        dlg.Destroy()

    app=wx.App(False)
    frame=MainWindow(None,'Sample editor')
    app.MainLoop()

我已经在这工作了大约一个小时。重新输入并多次检查。任何建议或其他教程形式的帮助将不胜感激。此外,是否有任何常见错误列表?

2 个答案:

答案 0 :(得分:3)

wx.Frame.__init__(...)到最后但不包括下一个def must be indented one additional level的所有内容。

答案 1 :(得分:0)

你有一个缩进错误:从第8行向下的所有内容都应缩进以匹配前面的行。