def updateB(container, textValue): global b if (utils.inputValidator(textValue.text)): b = int(textValue.text)
def updateA(container, textValue): global a if (utils.inputValidator(textValue.text)): a = int(textValue.text)
def premier(self): if (utils.inputValidator(a)): self.display.text = str(utils.premier(a))
def facteurs(self): if (utils.inputValidator(a)): self.display.text = str(utils.pdecomp(a))
def ppcm(self): if (utils.inputValidator(a) and utils.inputValidator(b)): self.display.text = str(utils.ppcm(a, b))