import wx
app = wx.App(False)
frame = wx.Frame(None, wx.ID_ANY, "Hello World")
frame.Show(True)
app.MainLoop()
Frames and Dialogs
wxPthon Cntrols
Process and Events
Window Layout
.......
wxPython gives us a demo program so that we could view the demo and view the source code at the same time.
Let's see demo program.