Skip to content
View shriyaExe's full-sized avatar
🏠
Working from home
🏠
Working from home

Highlights

  • Pro

Organizations

@PharmaEase

Block or report shriyaExe

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
shriyaExe/README.md
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)

Pinned Loading

  1. PythonChallenges PythonChallenges Public

    Python 2

  2. flutter_ecommerce_app flutter_ecommerce_app Public

    Forked from SinaSys/flutter_ecommerce_app

    🛒 E-Commerce App built in flutter using GetX

    Dart 1