Guest User

Untitled

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