Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Animal:
- tipo = 'Anfibio'
- class Anfibio(Animal):
- subespecie = 'Rana'
- anfibio = Anfibio()
- print(anfibio.subespecie)
- print(anfibio.tipo)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement