In [1]:
import sys
from PyQt4.QtGui import *

app = QApplication(sys.argv)
label = QLabel("Hello PyQt")
label.show()
app.exec_()


Out[1]:
0

In [ ]: