Make code in Python with its classes and inheritances Suppose Juan wants to bring flowers to a friend in another city, María Basic concepts Grass Since Juan can't take them personally, he entrusts his favorite florist (Rosa) with the shipment María receives her flowers Juan asks Rosa for a service Rosa knows how to provide the service to Juan • Juan knows that Rosa provides the service he needs • Rosa is responsible for providing the service properly to Ordinary soldier • Juan doesn't know what it implies to Rosa to provide you with the service

icon
Related questions
Question
Make code in Python with its classes and inheritances Suppose Juan wants to bring flowers to a friend in another city, María Basic concepts Grass Since Juan can't take them personally, he entrusts his favorite florist (Rosa) with the shipment María receives her flowers Juan asks Rosa for a service Rosa knows how to provide the service to Juan • Juan knows that Rosa provides the service he needs • Rosa is responsible for providing the service properly to Ordinary soldier • Juan doesn't know what it implies to Rosa to provide you with the service
←
a
(x)
O
AVAC
(>
→ C
CLASE PERSONA FLORERIA ☆
CO
Archivo Editar Ver Insertar Entorno de ejecución Herramientas Ayuda Se han guardado todos los cambios
+ Código + Texto
X
colab.research.google.com/drive/1sWPTGBMATtZo3q30WKXQFmylsYPQyMm
class Persona():
def
BUN
_init_(self, nombre, apellido, edad, CI, fechanac):
ESTUDIO TECNICO
self.nombre nombre
self. apellido apellido
self.edad edad
self.CI str(CI)
self.__fechanac fechanac
class empleado (Persona):
def saludar (self, IDEMP, Puesto):
self. IDEMP IDEMP
self.Puesto Puesto
DCLASE PERSON...pynb
class Usuario (Persona):
def saludar (self, IDusario, cliente):
self. IDusario IDusario
self.cliente cliente.
X CO CLASE PERSONA FLORERIA Col x
def saludar(self):
saludo ("Hola soy () () mi edad es (), mi cedula es {} y naci el ("
print (saludo.format(self.nombre, self.apellido, self.edad, self.CI, self.__fechanac))
A
-
Escribe aquí para buscar.
I
Еев
+
✓ Os completado a las 21:19
DELL
MORE
C
My
Chapt
co
Ata
Pause
fier
ger
Sha
C
Transcribed Image Text:← a (x) O AVAC (> → C CLASE PERSONA FLORERIA ☆ CO Archivo Editar Ver Insertar Entorno de ejecución Herramientas Ayuda Se han guardado todos los cambios + Código + Texto X colab.research.google.com/drive/1sWPTGBMATtZo3q30WKXQFmylsYPQyMm class Persona(): def BUN _init_(self, nombre, apellido, edad, CI, fechanac): ESTUDIO TECNICO self.nombre nombre self. apellido apellido self.edad edad self.CI str(CI) self.__fechanac fechanac class empleado (Persona): def saludar (self, IDEMP, Puesto): self. IDEMP IDEMP self.Puesto Puesto DCLASE PERSON...pynb class Usuario (Persona): def saludar (self, IDusario, cliente): self. IDusario IDusario self.cliente cliente. X CO CLASE PERSONA FLORERIA Col x def saludar(self): saludo ("Hola soy () () mi edad es (), mi cedula es {} y naci el (" print (saludo.format(self.nombre, self.apellido, self.edad, self.CI, self.__fechanac)) A - Escribe aquí para buscar. I Еев + ✓ Os completado a las 21:19 DELL MORE C My Chapt co Ata Pause fier ger Sha C
Expert Solution
steps

Step by step

Solved in 4 steps with 2 images

Blurred answer