“Самостоятельный питон” Ответ

Занятия в 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

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

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