Posts by Matheusxd87 • 11 points
1 post
-
0
votes0
answers43
viewsQ: I have a simple class and it doesn’t answer when I call the methods
Can someone help me? class sorvete(): def __init__(self,sabor, recipiente): self.sabor= sabor self.recipiente= recipiente self.ml= 0 def sabor(self): print("O sabor que pediu é: ", (self.sabor)) def…