Answers for "herencia python"

1

herencia python

class Persona:
    def __init(self, nombre):
        self.nombre = nombre

class Estudiante(Persona):
    def __init(self, nombre, curso):
        super().__init__(nombre)
        self.curso = curso
Posted by: Guest on January-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language