1
2
3
4
5
6
7
8
9
| class Me:
def __init__(self):
self.name = "Justin Hu"
self.MBTI = "INTJ"
self.location = "Toronto, ON, CA"
self.master = "MBA, Schulich School of Business, York U"
self.bachelor = "Engineering of Automation, Xiamen University"
self.hobbies = "hiking, road tripping, kayaking, swimming, reading"
self.languages = "English, Mandarin, Python, Java, C, C++, Javascript"
|