Guest User

Untitled

a guest
Nov 17th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. import sys
  2. from PyQt5.QtWidgets import *
  3.  
  4.  
  5. class MyWindow(QMainWindow):
  6. def __init__(self):
  7. super().__init__()
  8.  
  9.  
  10. app = QApplication(sys.argv)
  11. mywindow = MyWindow()
  12. mywindow.show()
  13. app.exec_()
Add Comment
Please, Sign In to add comment