added PyQt5 Hello World
This commit is contained in:
6
python_algorithms/PyQt5/hello_world.py
Normal file
6
python_algorithms/PyQt5/hello_world.py
Normal file
@@ -0,0 +1,6 @@
|
||||
from PyQt5 import QtWidgets
|
||||
|
||||
app = QtWidgets.QApplication([])
|
||||
window = QtWidgets.QWidget(windowTitle='Hello Qt')
|
||||
window.show()
|
||||
app.exec()
|
||||
Reference in New Issue
Block a user