calgary34 975bab3818
Add PyQt4 (#1257)
* Create PyQt4.py

* Update readme.md
2022-01-20 17:53:37 -06:00

10 lines
200 B
Python

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_())