Created
May 20, 2016 19:26
-
-
Save anonymous/4f040b6968868889c4df6e548d868ee6 to your computer and use it in GitHub Desktop.
This file contains 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
import sys | |
from PyQt5 import QtWidgets | |
def window(): | |
app = QtWidgets.QApplication(sys.argv) | |
w = QtWidgets.QWidget() | |
w.setWindowTitle('PYQt5 lesson 1') | |
w.show() | |
sys.exit(app.exec_()) | |
window() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment