Files
smargopolo/python_algorithms/PyQt5/hello_world.py
2020-03-23 21:29:54 +01:00

7 lines
138 B
Python

from PyQt5 import QtWidgets
app = QtWidgets.QApplication([])
window = QtWidgets.QWidget(windowTitle='Hello Qt')
window.show()
app.exec()