Video Clases 1

https://www.youtube.com/watch?v=VYXdpjCZojA


class humano:
    def __init__(self, edad):
        self.edad=edad
    def hablar(self,mensaje):
        print mensaje

pedro = humano(26)
raul = humano(21)

print 'Soy pedro y tengo ', pedro.edad
print 'Spy raul y tengo ', raul.edad

pedro.hablar('Hola')
raul.hablar('Hola, Pedro!')

Comentarios

Entradas populares