PROGRAM/PyQt5 with Python 여러개의 유사한 역할을 하는 QspinBox를 하나의 함수로 처리 Aryazoa 2023. 6. 11. 02:39 https://stackoverflow.com/questions/74863602/python-how-to-pass-a-qspinbox-value-together-with-other-parameters-to-a-slot Python - How to pass a QSpinBox value together with other parameters to a slot? It's quite straightforward to process a valueChanged signal of a single QSpinBox with a dedicated slot: class MainWindow(QMainWindow): self.ui.spinbox.valueChanged.connect(self.slot) def stackoverflow.com self.sender()를 사용하면 됨