wampee / tools /test.py
YYYYYYUUU's picture
Add files using upload-large-folder tool
4e336cc verified
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_())