Hola,
Estoy aprendiendo python, y intento sumar los valores de 2 campos:
Código Python:
Ver originaldef resolver(self,event):
if self.accion=='sumar':
self.resultado_final.SetLabel(self.numero.GetValue()+self.con.GetValue())
if self.accion=='restar':
self.resultado_final.SetLabel(self.numero.GetValue()-self.con.GetValue())
if self.accion=='dividir':
self.resultado_final.SetLabel(self.numero.GetValue()/self.con.GetValue())
if self.accion=='multiplicar':
self.resultado_final.SetLabel(self.numero.GetValue()*self.con.GetValue())
Si tengo 5 en uno, y en el otro 2 me da: 52 (porque los uno, no suma :S)
y al dividir, multiplicar y restar me da error :S
Gracias
Salu2