-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
taras
committed
Sep 8, 2024
1 parent
e2319f9
commit 36e90bc
Showing
1 changed file
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,48 @@ | ||
# write your code here | ||
class SoftwareEngineer: | ||
|
||
def __init__(self, name: str) -> None: | ||
print("SoftwareEngineer __init__") | ||
self.name = name | ||
self.skills = [] | ||
|
||
def learn_skill(self, skill: str) -> None: | ||
self.skills.append(skill) | ||
|
||
|
||
class FrontendDeveloper(SoftwareEngineer): | ||
def __init__(self, name: str) -> None: | ||
print("FrontendDeveloper __init__") | ||
super().__init__(name) | ||
self.skills.extend(["JavaScript", "HTML", "CSS"]) | ||
|
||
def create_awesome_web_page(self) -> str: | ||
print(f"{self.name} is creating a webpage...") | ||
return "<h1>Hello world</h1>" | ||
|
||
|
||
class BackendDeveloper(SoftwareEngineer): | ||
def __init__(self, name: str) -> None: | ||
print("BackendDeveloper __init__") | ||
super().__init__(name) | ||
self.skills.extend(["Python", "SQL", "Django"]) | ||
|
||
def create_powerful_api(self) -> str: | ||
print(f"{self.name} is creating an API...") | ||
return "http://127.0.0.1:8000" | ||
|
||
|
||
class AndroidDeveloper(SoftwareEngineer): | ||
def __init__(self, name: str) -> None: | ||
super().__init__(name) | ||
self.skills.extend(["Java", "Android studio"]) | ||
|
||
def create_smooth_mobile_app(self) -> str: | ||
print(f"{self.name} is creating a mobile app...") | ||
return "Ads every three swipes" | ||
|
||
|
||
class FullStackDeveloper(FrontendDeveloper, BackendDeveloper): | ||
def create_web_application(self) -> None: | ||
print(f"{self.name} started creating a web application...") | ||
self.create_powerful_api() | ||
self.create_awesome_web_page() |