Advertisement
Guest User

helloworld.py

a guest
Jan 31st, 2012
2,674
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  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()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement