From c32aec1678b711a6c7d0d56e5a10a4eae0637600 Mon Sep 17 00:00:00 2001 From: Wayne Glettig Date: Mon, 23 Mar 2020 21:29:54 +0100 Subject: [PATCH] added PyQt5 Hello World --- python_algorithms/PyQt5/hello_world.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 python_algorithms/PyQt5/hello_world.py 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()