“Mots-clés autonomes en Python” Réponses codées

Classes en Python avec un paramètre d'auto-paramètre

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

Mots-clés autonomes en 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

Mots-clés autonomes en Python

self keyword
Said HR

Réponses similaires à “Mots-clés autonomes en Python”

Questions similaires à “Mots-clés autonomes en Python”

Plus de réponses similaires à “Mots-clés autonomes en Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code