我正在尝试使用标签创建一个窗口,我收到此错误 文件" ui.py",第16行,在mainWindow = MyForm()文件中 " ui.py",第9行,在 init lbl = QtGui.QLable(' Welcome Brats!', self)ttributeError:' module'对象没有属性' QLable'
import sys
from PyQt4 import QtGui
class MyForm(QtGui.QWidget):
def __init__(self):
super(MyForm, self).__init__()
lbl = QtGui.QLable('Welcome Brats!', self)
self.setGeometry(300,300,250,150)
self.setWindowTitle(('Port Scaner'))
self.show()
app = QtGui.QApplication(sys.argv)
mainWindow = MyForm()
status = app.exec_()
sys.exit(status)
Pyqt4 python3.4