Luego de de una larga compilación de datos resolvimos este enigma que presentan algunos lectores. Te dejamos la respuesta y esperamos serte de mucha apoyo.
Ejemplo: setter en python
# of get() and set() method in # normal function classGeek:def__init__(self, age =0):
self._age = age
# getter method defget_age(self):return self._age
# setter method defset_age(self, x):
self._age = x
raj = Geek()# setting the age using setter
raj.set_age(21)# retrieving age using getter print(raj.get_age())
Sección de Reseñas y Valoraciones
No se te olvide mostrar este post si te ayudó.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)