“Типы методов в OOP Python” Ответ

Типы методов в OOP Python

# Class Method Implementation in python 
class Student:
    name = 'Student'
    def __init__(self, a, b):
        self.a = a
        self.b = b 
    
    @classmethod
    def info(cls):
        return cls.name

print(Student.info())
Lazy Louse

Типы методов в OOP Python

# Static Method Implementation in python
class Student:
    name = 'Student'
    def __init__(self, a, b):
        self.a = a
        self.b = b 
    
    @staticmethod
    def info():
        return "This is a student class"

print(Student.info())
Lazy Louse

Ответы похожие на “Типы методов в OOP Python”

Вопросы похожие на “Типы методов в OOP Python”

Больше похожих ответов на “Типы методов в OOP Python” по Python

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

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