Python GUI问题

最近把空闲时间花在看《Rapid GUI programming with Python and Qt》一书上。

我选择的是在python3 + PyQt4的平台上。

问题就出在QString上:

>>>from PyQt4 import QtCore

>>> str = QString('Welcome')

NameError: name 'QString' is not defined

换了一种方法:

>>>from PyQt4.QtCore import QString
Traceback (most recent call last):
  File "<pyshell#4>", line 1, in <module>
    from PyQt4.QtCore import QString
ImportError: cannot import name QString

又出现如此问题……

求解救……

你可能感兴趣的:(python,PyQt)