Add wxPython (#1258)

* Create wxPython.py

* Update readme.md

* language count
This commit is contained in:
calgary34
2022-01-20 16:56:05 -07:00
committed by GitHub
parent 975bab3818
commit 14b4f84c8c
2 changed files with 10 additions and 1 deletions

8
w/wxPython.py Normal file
View File

@@ -0,0 +1,8 @@
import wx
app = wx.App()
window = wx.Frame(None)
panel = wx.Panel(window)
label = wx.StaticText(panel, label = "Hello World")
window.Show(True)
app.MainLoop()