Is there any way to get the name of a QPushButton?
QPushButton
i.e.
self.pushButton_9_3.setObjectName(\"pushButton_9_3\")
Well, if you have a reference to the button you can simply use
my_button.objectName()
or in your case
self.pushButton_9_3.objectName()