* Create PyQt4.py

* Update readme.md
This commit is contained in:
calgary34
2022-01-20 16:53:37 -07:00
committed by GitHub
parent 445288a344
commit 975bab3818
2 changed files with 11 additions and 1 deletions

9
p/PyQt4.py Normal file
View File

@@ -0,0 +1,9 @@
import sys
from PyQt4 import QtGui
app = QtGui.QApplication(sys.argv)
widget = QtGui.QWidget()
helloWorld = QtGui.QLabel(widget)
helloWorld.setText("Hello World")
widget.show()
sys.exit(app.exec_())