“Co to jest słowo kluczowe w Pythonie” Kod odpowiedzi

Co to jest słowo kluczowe w Pythonie

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

Słowo kluczowe w Pythonie

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

Słowo kluczowe w Pythonie

self keyword
Said HR

Odpowiedzi podobne do “Co to jest słowo kluczowe w Pythonie”

Pytania podobne do “Co to jest słowo kluczowe w Pythonie”

Więcej pokrewnych odpowiedzi na “Co to jest słowo kluczowe w Pythonie” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu