“Cómo agregar atributo a la clase Python” Código de respuesta

Cómo agregar atributo a la clase Python

class Food():
    breakfast = "Pancakes"
    Lunch = "Sandwich"
#Parts of setattr
#self: what class or object
#name: the variable you are affecting
#value: what the variable's value will be
setattr(Food,"breakfast","Toast")
print(Food.breakfast)
>>Toast
#You can also add a variable
setattr(Food,"Dinner","Steak")
print(Food.Dinner)
>>Steak
Blue Cloud: Weird Coder

Python Agregar atributo a la instancia de clase

setattr(objectClass, "newAttribute", "new attr")
SkullLi

Respuestas similares a “Cómo agregar atributo a la clase Python”

Preguntas similares a “Cómo agregar atributo a la clase Python”

Más respuestas relacionadas con “Cómo agregar atributo a la clase Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código