class Animal():
	def __init__(self, una_especie):
		self.especie = una_especie

class Gato(Animal):
	def __init__(self):
		super().__init__('gato')
		
g = Gato()
print(g.especie)

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: