# -*- coding: utf-8 -*- #!/usr/bin/env python # coding: utf-8 __author__ = "Sokos Lee" __copyright__ = "Copyright (c) 2006-2023 SokosLee.com" class AboutMe(): def __init__(self): self.fullName = 'Sokos Lee' self.footprint = 'GanZhou ----> ZhuHai ----> GuangZhou ----> Hohhot ----> ShenZhen ----> ?' self.skill = 'JavaScript & PHP & Java & Rust & Python & Android & ...' self.twitter = 'https://twitter.com/CnHawkOrg' self.gmail = 'SokosLee@gmail.com' self.interest = 'Software Architect & Developer & Creator. #Python #Java #PHP #NodeJS #Rust' self.desire = 'Democracy & Equality & Fairness & Freedom' '''Contribution to Projects''' def getProject(self): self.project = ['∞'] return self.project def getFavor(self): print('Run & Mountain Climbing & Silence') def ps(self): print(u'史铁生: 死是一件不必急于求成的事,死是一个必然会降临的节日') print(u'Tim O Reilly:人生是旅行,钱是汽油,旅程中需要加油,但汽油不是旅程的目的。') print(u'三毛:有谁,在这个世界上不是孤独的生,不是孤独的死?') print(u'Sokos Lee:人生就是一场苦行,你我在同一条路上孤独前行。') print(u'Life is a single player game,whether you or me.') def getBio(self): # Pls, email me !!! pass if __name__ == '__main__': aboutMe = AboutMe() print("My Name:%s My EMail:%s My Skill:%s" % (aboutMe.fullName,aboutMe.gmail,aboutMe.skill)) projects = aboutMe.getProject() for p in projects: print("URL:%s Technique:%s MyWork:%s" % (p['url'],p['Technique'],p['MyWork']))
# Next Sokos Lee @cnhawkorg © 2006-2023 Sokos Lee,Last Updated 2023-03-07 00:08 +08:00