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

15 lines
266 B
Python

from dataclasses import dataclass
from typing import Self
@dataclass
class Person:
name: str
age: int
def move(self: Self) -> None:
print(f"{self.name} говорит")
def talk(self: Self) -> None:
print(f"{self.name} идёт")