* Create PyQt5.py

* Update readme.md

* increment language count

* Update PyQt5.py
This commit is contained in:
calgary34
2022-01-20 16:42:05 -07:00
committed by GitHub
parent 8f0a7a236a
commit 445288a344
2 changed files with 13 additions and 1 deletions

11
p/PyQt5.py Normal file
View File

@@ -0,0 +1,11 @@
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_())