# -*- coding: utf-8 -*- #!/usr/bin/env python # coding: utf-8 __author__ = "Sokos Lee" __copyright__ = "Copyright (c) 2006-2024 SokosLee.com" class AboutMe(): def __init__(self): self.fullName = 'Sokos Lee' self.skills = 'JavaScript & PHP & Java & Rust & Python & Android & iOS & ...' self.x = 'https://x.com/SokosLee' self.gmail = 'SokosLee@gmail.com' self.roles = 'Software Architect & Developer & Creator.' self.desire = 'Democracy & Equality & Fairness & Freedom' '''Contribution to Projects''' def getProjects(self): self.projects = ['∞'] return self.projects def getFavor(self): print('Run & Mountain Climbing & Silence') def getBio(self): # Pls, email me !!! pass if __name__ == '__main__': aboutMe = AboutMe() print("My Name:%s My EMail:%s My Skills:%s" % (aboutMe.fullName,aboutMe.gmail,aboutMe.skills)) projects = aboutMe.getProjects() for p in projects: print("%s" % (p))
# @SokosLee © 2006-2024 Sokos Lee,Last Updated 2024-05-02 00:08 -04:00