Hi there, I'm Jason! Let's go EXPLORE!
#!/usr/bin/python
# -*- coding: utf-8 -*-
class Engineer:
def __init__(self):
self.name = "Jason Zhao"
self.role = ["PhD@HKUST", "Contract Dev@dappOS", "Researcher@Applied Crypto", "Devotee@Blockchain"]
self.language_spoken = ["zh_CN", "en_US"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
def introduce(self):
interests = ["thrive on deep dives into complex topics",
"enjoy sharing my insights",
"love collaborating with like-minded individuals towards common goals"]
for interest in interests:
print("I" + interest)
me = Engineer()
me.say_hi()
me.introduce()