forked from rubenhortas/python101
-
Notifications
You must be signed in to change notification settings - Fork 0
/
clase.py
executable file
·51 lines (40 loc) · 1.22 KB
/
clase.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# _*_ coding:utf-8 _*
"""
@author: Rubén Hortas Astariz <http://rubenhortas.blogspot.com>
@contact: rubenhortas at gmail.com
@github: http://github.com/rubenhortas
@license: CC BY-NC-SA 3.0 <http://creativecommons.org/licenses/by-nc-sa/3.0/>
@file: clase.py
"""
"""
Ejemplo de clase en python
"""
class SuperHeroe:
nombre = None
batmovil_disponible = True
batcoptero_disponible = False
def __init__(self):
self.nombre = 'Batman'
print 'Mi nombre es %s' % self.nombre
self.compi = 'Robin'
def desvelar_compi(self):
print 'Mi compañero es %s' % self.compi
def conducir(self):
if self.batcoptero_disponible:
print "Al batcóptero!"
else:
if self.batmovil_disponible:
print "Al batmóvil!"
else:
print "A batpatas!"
@staticmethod
def __identidad_secreta():
print 'Soy Bruce Wayne :('
if __name__ == '__main__':
mi_batman = SuperHeroe()
mi_batman.desvelar_compi()
mi_batman.conducir()
# Name mangling para acceder a métodos "privados"
# noinspection PyProtectedMember,PyUnresolvedReferences
mi_batman._SuperHeroe__identidad_secreta()