Guest User

Untitled

a guest
Oct 18th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. import sys
  2. from PyQt5.QtWidgets import QApplication, QWidget
  3. if __name__ == '__main__':
  4.  
  5. app = QApplication(sys.argv)
  6.  
  7. w = QWidget()
  8. w.resize(250, 150)
  9. w.move(300, 300)
  10. w.setWindowTitle('Simple')
  11. w.show()
  12.  
  13. sys.exit(app.exec_())
Add Comment
Please, Sign In to add comment