Input:
class Profile():
def __init__(self):
self.name = "Nnova"
self.username = "Nnova13"
self.age = 18
self.mail = "nnova13@gmail.com"
self.bio = "Developer Python | I like to code | Learning new technologies"
self.skills = ["Python", "HTML", "CSS", "JavaScript"]
self.projects = [
{"name": "revers-art", "link": "https://github.com/Nnova13/2025_1093_revers-art"}
]
def __str__(self):
projects_str = "\n".join([f" - [{project['name']}]({project['link']})" for project in self.projects])
return f"""
π Hello, I'm {self.name}!
π§ Bio: {self.bio}
π Age: {self.age}
βοΈ Email: {self.mail}
π Skills:
- {', '.join(self.skills)}
π Projects:
{projects_str}
"""
if __name__ == '__main__':
me = Profile()
print(me)Output:
π Hello, I'm Nnova!
π§ Bio: Developer Python | I like to code | Learning new technologies
π Age: 18
βοΈ Email: nnova13@gmail.com
π οΈ Skills:
- Python, HTML, CSS, JavaScript
π Projects:
- [revers-art](https://github.com/Nnova13/2025_1093_revers-art)