“Palavra -chave autônoma em python” Respostas de código

classes em python com auto -parâmetro

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

Palavra -chave autônoma em python

class Person:
  def __init__(mysillyobject, name, age):
    mysillyobject.name = name
    mysillyobject.age = age

  def myfunc(abc):
    print("Hello my name is " + abc.name)

p1 = Person("John", 36)
p1.myfunc()

#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. The reason you need to use self. is because Python does not use the @ syntax to refer to instance attributes
Sachin

Palavra -chave autônoma em python

self keyword
Said HR

Respostas semelhantes a “Palavra -chave autônoma em python”

Perguntas semelhantes a “Palavra -chave autônoma em python”

Mais respostas relacionadas para “Palavra -chave autônoma em python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código