cherrydata / tools /test.py
Voidljc
Your commit message
aa24fe8
Raw
History Blame Contribute Delete
157 Bytes
import sys
from PyQt5.QtWidgets import QApplication, QLabel
app = QApplication(sys.argv)
label = QLabel('Hello, PyQt5!')
label.show()
sys.exit(app.exec_())