소개
#! /usr/bin/env python3
## introduce.py
from dataclasses import dataclass
from typing import List
@dataclass
class Programmer:
name: str
specialities: List[str]
interests: List[str]
def greetings(self):
print(f"""
안녕하세요. {self.name}입니다.
저는 {" ".join(self.specialities)}를 이용해 개발 하기를 좋아합니다.
현재 {" ".join(self.interests)}에 관심을 가지고 공부하고 있습니다.""")
if __name__ == "__main__":
Jack = Programmer(
name="양승준",
specialities=["python", "javascript"],
interests=["AI", "Web and App Development"]
)
Jack.greetings()
python3 introduce.py
github: https://github.com/yesj1234
huggingface: https://huggingface.co/yesj1234