Skip to content

xncbf/xncbf

Β 
Β 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

14 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.14"]
    web: str = "https://pypy.dev/"
    work_where: str = "ab180"
    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 @ab180 in πŸ‡°πŸ‡·
i speak ko-KR and 🐍v3.14
some things i like: πŸ”, πŸ’», 🐍, 🐢, 🐈, β˜•οΈ, 🍺, 🍷

About

it me

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors