Advertisement
Fhernd

herencia.py

Feb 4th, 2018
825
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. class Animal:
  2.     tipo = 'Anfibio'
  3.    
  4. class Anfibio(Animal):
  5.     subespecie = 'Rana'
  6.    
  7. anfibio = Anfibio()
  8.  
  9. print(anfibio.subespecie)
  10. print(anfibio.tipo)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement