Python Schoolby trefilov
Шаг 1 из 4+100 XP

ООП: обзор

class, __init__, методы.

class

class User:
    def __init__(self, name):
        self.name = name
    def greet(self):
        return f"Hi, {self.name}"