Skip to content
View Nnova13's full-sized avatar
πŸ’­
[/InDev] - Coding
πŸ’­
[/InDev] - Coding
  • InDev

Highlights

  • Pro

Block or report Nnova13

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
Nnova13/README.md

πŸ‘‹ Hi, I'm Nnova!

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)

GitHub Stats:

Github Stats Top Langs

Pinned Loading

  1. revers-art revers-art Public

    Chercher les infos d'une Ε“uvre Γ  partir d'une image de l'Ε“uvre

    Python 1 2