This repository has been archived on 2024-08-23. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
lessons/Python/OOP2/task6.py
T
2023-07-16 13:23:25 +00:00

13 lines
181 B
Python

from dataclasses import dataclass
from typing import Self
@dataclass
class Game:
name: str
year: int
# НАХ?
def get_name(self: Self):
return self.name