union (1) 썸네일형 리스트형 [FastAPI] 타입 지정, Pydantic 🐰 FastAPI 공식문서를 보면서 개인적으로 정리한 글 입니다. Type FastAPI는 파이썬의 Type Annotation의 기반을 두고 있다. 이를 통해 파이썬 변수를 선언하거나 함수의 값을 리턴할 때 타입을 지정할 수 있다. 이러한 Type Annotation은 ":"을 사용하여 명시할 수 있다. (반환 타입은 "->" 로 지정) Simple Type int float str bool 등의 파이썬 표준타입 def getItem(a:int,b:float)->int: return a+int(b) result:int = getItem(1,1.5) print(result) 타입 매개변수를 활용한 Generic(제네릭) 타입 list, dict, set, tuple 같은 값을 저장할 수 있는 데이터 구조.. 이전 1 다음