Skip to content
View QuentinClyy's full-sized avatar
  • Quebec City

Block or report QuentinClyy

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
QuentinClyy/README.md

Typing SVG

Computer Science Student at Laval University | Digital artist sometimes

class Quentin:

    def __init__(self):
        self.interests = ["Programming", "Artifical Intelligence", "Astrophysics",
                          "PC building", "Digital Art", "Video Games"]
        self.languages = ["Python", "C", "C++", "Javascript", "HTML", "CSS", "MySQL"]
        self.projects = {
            "EEG_flappybird (contribution)" : "Python",
            "Fight Match (school project)" : "Python",
            "Memory Manager (school project)" : "C++"
        }
    
    def say_about(self):
        print(f"I love {', '.join(self.interests)}")
        print(f"I dabble in {', '.join(self.languages)}")
        print("Projects:", end=" ")
        for project, language in self.projects.items():
            print(f"{project} in {language},", end=" ")

quentin = Quentin()
quentin.say_about()

My Spotify Profile

My Spotify

Careful, you might be compelled
to add some of my listenings to yours

Pinned Loading

  1. cia-ulaval/EEG_flappy_bird cia-ulaval/EEG_flappy_bird Public

    Petit jeu de flappy bird from scratch pour utiliser avec l'EEG

    Python 3 1

  2. Fight-Match-TP4A22 Fight-Match-TP4A22 Public

    School project for a game inspired by the board game Strike, using gladiators instead of dice

    Python