All problems
MediumOOP
@classmethod
Add a classmethod `from_string(s)` that parses "name,age" into a Person.
- #classmethod
- #decorator
Sample input
"Aarav,22"
Sample output
Aarav 22
class-method-decorator.py
Output
Press "Run code" to execute.
Loading…
Add a classmethod `from_string(s)` that parses "name,age" into a Person.
"Aarav,22"
Aarav 22
Press "Run code" to execute.