Không, tôi nghĩ đây không phải là câu hỏi trùng lặp, nó còn nhiều việc phải làm ...
Dù sao, câu hỏi của bạn muốn truyền nhiều đối số hơn, Trong python, bạn có thể truyền nhiều đối số gọi 'yourMethod (* args, ** kw)'; ví dụ;
class Worker(QThread):
.
.
def __init__(self, parent, *args, **kw):
QThread.__init__(self, parent)
self.yourInit(*args, **kw)
.
.
def yourInit (self, x, y, z):
print x, y, z
.
.
class MyClass(QObject):
.
.
def __init__(self):
super(MyClass, self).__init__()
.
.
x = 1000
y = 'STRING'
z = [0, 1, 2, 3, 4]
thread1 = Worker(self, x, y, z)
.
.
Trân trọng,