Hi! I'm Thanapol Liangsoonthornsit, a student at Coventry University and a Cadet at 42 Bangkok. I'm a hobbyist programmer looking to expand my arsenal of technologies I can use.
class HazamaShoken():
def __init__(self):
self.name = "Thanapol Liangsoonthornsit";
self.username = "hazamashoken";
self.location = "Singapore";
self.web = "https://hazamashoken.github.io/";
def __str__(self):
return self.name
if __name__ == '__main__':
me = HazamaShoken()