타입 힌트 (Type Hint)
PEP 484 에 있는 문서에 내용이 포함되어 있으며, 파이썬 함수의 파라미터와 리턴값의 type 을 쉽게 볼수 있는 가독성을 살려준다.
https://www.python.org/dev/peps/pep-0484/
PEP 484 -- Type Hints
The official home of the Python Programming Language
www.python.org
Example)
#function foo takes 'a' paramter as integer and return boolean value
def foo(a: int) -> bool:
...
'Python' 카테고리의 다른 글
Regular expression operation (re.sub) (0) | 2020.08.16 |
---|---|
f-string (0) | 2020.08.12 |
Enumerate (0) | 2020.08.12 |
댓글