“auto pitón” 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 “auto pitón”

Preguntas similares a “auto pitón”

Más respuestas relacionadas con “auto pitón” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código