Skip to content

Instantly share code, notes, and snippets.

@Indavelopers
Created June 2, 2017 10:51
Show Gist options
  • Save Indavelopers/c4add231176d264c9e523a17fb247d1b to your computer and use it in GitHub Desktop.
Save Indavelopers/c4add231176d264c9e523a17fb247d1b to your computer and use it in GitHub Desktop.
import sys
from PyQt4 import QtGui
def window():
app = QtGui.QApplication(sys.argv)
w = QtGui.QWidget()
b = QtGui.QLabel(w)
b.setText("Hello World!")
w.setGeometry(100,100,200,50)
b.move(50,20)
w.setWindowTitle(“PyQt”)
w.show()
sys.exit(app.exec_())
if __name__ == '__main__':
window()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment