class Developer:
def __init__(self):
self.skills = [
"Python",
"Django",
"PostgreSQL",
"AWS",
"ReactJs",
"Flutter"
]
def __str__(self):
bio = (
"class Developer:\n"
" def __init__(self):\n"
" self.skills = [\n"
)
for skill in self.skills:
bio += f" '{skill}',\n"
bio += (
" ]\n\n"
" def __str__(self):\n"
" bio = 'Developer Skillset:\\n'\n"
" for skill in self.skills:\n"
" bio += f'- {skill}\\n'\n"
" return bio"
)
return bio
def display_skills(self):
bio = "Developer Skillset:\n"
for skill in self.skills:
bio += f"- {skill}\n"
return bio
developer = Developer()
print(developer)
🏠
Working from home
Building UPI
-
PhonePe
- Pune, India
-
20:02
(UTC +05:30) - shriyaa.tech
- in/shriya-barve
Highlights
- Pro
Pinned Loading
-
-
flutter_ecommerce_app
flutter_ecommerce_app PublicForked from SinaSys/flutter_ecommerce_app
🛒 E-Commerce App built in flutter using GetX
Dart 1
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.