Don't like ads? PRO users don't see any ads ;-)
Guest

helloworld.py

By: a guest on Jan 31st, 2012  |  syntax: Python  |  size: 0.11 KB  |  hits: 525  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. import wx
  2.  
  3. app = wx.App()
  4. wnd = wx.Frame(None, wx.ID_ANY, "I'm the title")
  5. wnd.Show(True)
  6. app.MainLoop()