You need to sign in or sign up before continuing.
first.py 254 Bytes
Newer Older
Kriengsak's avatar
Kriengsak committed
1 2 3 4 5 6 7 8 9 10 11
import sys
from PyQt5.QtWidgets import QApplication, QWidget

if __name__ == '__main__':
    app = QApplication(sys.argv)
    w = QWidget()
    w.resize(250, 150)
    w.move(300, 300)
    w.setWindowTitle('Simple')
    w.show()
    sys.exit(app.exec_())