You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#!/usr/bin/python# -*- coding: utf-8 -*-classEngineer:
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"]
defsay_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
defintroduce(self):
interests= ["thrive on deep dives into complex topics",
"enjoy sharing my insights",
"love collaborating with like-minded individuals towards common goals"]
forinterestininterests:
print("I"+interest)
me=Engineer()
me.say_hi()
me.introduce()