Created
March 23, 2018 06:45
-
-
Save j2doll/7ccb0bfee9de65c73abc0a9404ecbed4 to your computer and use it in GitHub Desktop.
Hello, PyQt5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # HelloPyQt5.py | |
| import sys | |
| from PyQt5.QtWidgets import QApplication, QWidget | |
| app = QApplication(sys.argv) | |
| w = QWidget() | |
| w.setWindowTitle('Hello World') | |
| w.show() | |
| sys.exit(app.exec_()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment