Python
Type Hint
벤진[Benzene]
2020. 8. 11. 05:57
타입 힌트 (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:
...