I'm just learning python and decided to make a real super simple program on a PC using wxwidget. I wrote the code and saved it in .py format. What next to do so that the program starts when it starts up, otherwise I click on the file and enter the command line and crash?
import wx app = wx.App() wnd = wx.Frame(None, wx.ID_ANY, "I'm the title") wnd.Show(True) app.MainLoop()