Skip to content
View Briqem's full-sized avatar

Block or report Briqem

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
Briqem/README.md
class Briq:
    def __init__(self, name, title, location, interests, skills):
        self.name = name
        self.title = title
        self.interests = interests
        self.skills = skills

    def __str__(self):
        bio = (
            f"My username is {self.name}, I'm a {self.title}. "
            f"My interests include {', '.join(self.interests)}. "
            f"I'm skilled in {', '.join(self.skills)}."
        )
        return bio

name = "Briq"
title = "Software Engineer"
interests = ["Network Development", "Backend Development", "Security"]
skills = ["Python", "GO"]

my_bio = Briq(name, title, location, interests, skills)
print(my_bio)

Popular repositories Loading

  1. Briqem Briqem Public