Skip to content

xncbf/xncbf

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 

Repository files navigation

from earth import Human

class ItMe(Human):
    first_name: str = "joon hwan"
    last_name: str = "kim"
    resides_in: str = "🇰🇷"
    enjoys: List[str] = ["🍔", "💻", "🐍", "🐶", "🐈", "☕️", "🍺", "🍷"]
    speaks: List[str] = ["ko-KR", "🐍v3.12"]
    web: str = "https://pypy.dev/"
    work_where: str = "FreeD Soft"
    work_what: str = "backend-engineer"

    @classmethod
    def hi(cls):
        print(f"hey 👋, i'm {cls.first_name.capitalize()}")
        print(f"currently i work in {cls.work_what} @ {cls.work_where} in {cls.resides_in}")
        print(f"i speak {' and '.join(cls.speaks)}")
        print(f"some things i like: {', '.join(cls.enjoys)}")

>>> ItMe.hi()
hey 👋, i'm Joon Hwan
currently i work in backend-engineer @ FreeD Soft in 🇰🇷
i speak ko-KR and 🐍v3.12
some things i like: 🍔, 💻, 🐍, 🐶, 🐈, ☕️, 🍺, 🍷

Releases

No releases published

Packages

No packages published