PtQt4 는 Qt 를 Python으로 binding한 것이다. Python을 통해서 쉽게 GUI 프로그램을 할 수 있다. 가장 기본적인 hello 프로그램 예를 보면 hello.py (Language : python) import sys from PyQt4 import QtGui class MyClass(QtGui.QWidget): def __init__(self, parent=None): QtGui.QWidget.__init__(self, parent) self.setGeometry(300, 300, 250, 150) self.setWindowTitle('Hello!') app = QtGui.QApplication(sys.argv) myinstant = MyClass() myinstant.show()..