Hi! I'm Yeison Iguaran, a programming enthusiast from Valledupar, Colombia. I learn by creating small projects while perfecting my skills.
class YeisonIguaran():
    
    def __init__(self):
        self.name = "Yeison Iguaran"
        self.username = "yaim0425"
        self.location = "Valledupar, Colombia"
        self.instagram = "@yaim425"
        self.discord = "@yaim904"
    
    def __str__(self):
        return self.name
if __name__ == '__main__':
    me = YeisonIguaran()