sorry, again~
or can use the way ?
def funcA():
print("AAA" )
def funcB():
print("BBB" )
def funcC():
print("CCC" )
q1 = QPushButton( "Q1" )
q2 = QPushButton( "Q2" )
q1.clicked.connect( funcA, funcB )
q2.clicked.connect( funcA, funcC )
thank.