“Что такое само в питоне” Ответ

Занятия в Python с самоуверенным параметром

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

Что такое само в питоне

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

Самостоятельный питон

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

Ответы похожие на “Что такое само в питоне”

Вопросы похожие на “Что такое само в питоне”

Больше похожих ответов на “Что такое само в питоне” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования