kyu_7.make_class package
Submodules
kyu_7.make_class.animal module
Animal class implementation for -> Make Class.
Created by Egor Kostan. GitHub: https://github.com/ikostan
- class kyu_7.make_class.animal.Animal(**kwargs)[source]
Bases:
objectAnimal class implementation.
- _age: str
- _color: str
- _health: str
- _name: str
- _species: str
- _weight: str
- property age: str
Get age.
- Returns:
str
- property color: str
Get color.
- Returns:
str
- property health: str
Get health.
- Returns:
str
- property name: str
Get name.
- Returns:
str
- property species: str
Get species.
- Returns:
str
- property weight: str
Get weight.
- Returns:
str
kyu_7.make_class.make_class module
make_class function implementation for -> Make Class.
Created by Egor Kostan. GitHub: https://github.com/ikostan
kyu_7.make_class.test_make_class module
Test for -> Make Class.
Created by Egor Kostan. GitHub: https://github.com/ikostan
Module contents
Make Class.