-
Notifications
You must be signed in to change notification settings - Fork 0
/
ejemplo_herencia.py
39 lines (34 loc) · 1.15 KB
/
ejemplo_herencia.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
class FichaEmpleado:
def __init__(self):
self.nombre = None
self.edad = None
self.antiguedad = None
self.__cualificacion = None
def __sueldo(self):
return(1000 + self.antiguedad * 25 + self.__cualificacion * 100)
def setCualificacion(self, cualif:int):
if cualif == 1 or cualif == 2 or cualif == 3 or cualif == 4 or cualif == 5:
self.__cualificacion = cualif
def getCualificacion(self):
return(self.__cualificacion)
def getSueldo(self):
return(self.__sueldo())
class FichaFabricacion(FichaEmpleado):
def __init__(self, art_mes : float):
super().__init__()
self.__articulos_mes = art_mes
def incArticulos(self, suma : float):
self.__articulos_mes += suma
def getArticulos(self):
return (self.__articulos_mes)
def main():
b = FichaFabricacion(27.5)
b.nombre = "Laura"
b.edad = 27
b.antiguedad = 3
b.setCualificacion(3)
print("El sueldo de", b.nombre, "es:",b.getSueldo())
b.incArticulos(34.5)
print("La media mensual de artículos manufacturados por", b.nombre, "es:", b.getArticulos() )
main()