Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. class Macaco:
  2. def __init__(self,nome, estomago):
  3. self._nome = nome
  4. self._estomago = estomago
  5.  
  6. @property
  7. def ver_estomago(self):
  8. return self._estomago
  9.  
  10. @property
  11. def digiu(self):
  12. self._estomago = 'vazio'
  13. return 'vazio'
  14.  
  15. def comeu(self, comida):
  16. self._estomago = comida
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement