diff --git a/python_algorithms/PyQt5/hello_world.py b/python_algorithms/PyQt5/hello_world.py new file mode 100644 index 0000000..6a97140 --- /dev/null +++ b/python_algorithms/PyQt5/hello_world.py @@ -0,0 +1,6 @@ +from PyQt5 import QtWidgets + +app = QtWidgets.QApplication([]) +window = QtWidgets.QWidget(windowTitle='Hello Qt') +window.show() +app.exec()