Posts by Jonathan Morais • 11 points
1 post
-
1
votes2
answers320
viewsA: I want to create a Python calculator with constructor, but when I create an object it says that the class is not defined
class Calculadora(object): def soma (self,primeiro_valor,segundo_valor): self.primeiro_valor = primeiro_valor self.segundo_valor = segundo_valor return self.primeiro_valor + self.segundo_valor; def…
python-3.xanswered Jonathan Morais 11