Tag Archives: tablewidget

PyQt4: example of TableWidget usage

The following simple example (inspired by saltycrane example shows how to build a simple application that pops up a table with PyQt4 and its TableWidget class. import sys from PyQt4.QtCore import * from PyQt4.QtGui import *   data = {’col1′:[’1′,’2′,’3’], … Continue reading

Posted in Python | Tagged , , | 3 Comments