“¿Qué es yo en Python?” Código de respuesta

Clases en Python con parámetro propio

self represents the instance of the class. By using the “self” keyword we can access the attributes and methods of the class in python. It binds the attributes with the given arguments. 
Dull Dogfish

¿Qué es yo en Python?

self is used to refer to the specific object that is calling that function
Obedient Oystercatcher

auto pitón

class A(object):

    @staticmethod
    def stat_meth():
        print("Look no self was passed")
>>> a = A()
>>> a.stat_meth()
Look no self was passed
ap_Cooperative_dev

Respuestas similares a “¿Qué es yo en Python?”

Preguntas similares a “¿Qué es yo en Python?”

Más respuestas relacionadas con “¿Qué es yo en Python?” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código