7 lines
138 B
Python
7 lines
138 B
Python
from PyQt5 import QtWidgets
|
|
|
|
app = QtWidgets.QApplication([])
|
|
window = QtWidgets.QWidget(windowTitle='Hello Qt')
|
|
window.show()
|
|
app.exec()
|