calgary34 445288a344
Add PyQt5 (#1256)
* Create PyQt5.py

* Update readme.md

* increment language count

* Update PyQt5.py
2022-01-20 17:42:05 -06:00

12 lines
218 B
Python

import sys
from PyQt5.QtWidgets import QApplication, QWidget, QLabel
app = QApplication(sys.argv)
widget = QWidget()
helloWorld = QLabel(widget)
helloWorld.setText("Hello World")
widget.show()
sys.exit(app.exec_())