Код: Выделить всё
class Person:
name: str
age: int
def parse_me(self):
"what do I do here??"
Подробнее здесь: https://stackoverflow.com/questions/528 ... type-hints
Код: Выделить всё
class Person:
name: str
age: int
def parse_me(self):
"what do I do here??"