class DevComentry():
def __init__(self):
self.name = "Nguyen Van Tan";
self.username = "doctor-blue";
self.location = "Ha Noi, VietNam";
self.youtube = "https://www.youtube.com/c/DevComentry";
self.web = "https://van-tan.github.io";
self.blog = "https://doctorblue.github.io"
def __str__(self):
return self.name
if __name__ == '__main__':
me = DevComentry()