Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Clase:
- def __init__(self):
- self._interno = 0 # Miembro interno
- self.publico = 1 # Miembro público
- def _metodo_interno(self):
- '''
- Método interno
- '''
- pass
- def metodo_publico(self):
- '''
- Método público
- '''
- pass
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement