since there isn't any useful How-To for beginners of PyQt5,
I'm stuck with a little problem 。
@pyqtSlot()
def on_pushButton_17_clicked(self):
"""
Slot documentation goes here.
"""
A=self.lineEdit_22.text()
B=self.lineEdit_23.text()
print(A + B)
Show 12 instead of 3(1+2=3)
I want to enter the number in the lineEdit inside the calculation by PushButton, and get the value.