반응형
"""
함수에 type hinting 사용하기
함수가 어떤 타입을 파라미터로 전달받는지, 반환값으로 어떤 타입을 전달하는지에 대한 자동 완성 기능 사용.
"""
def word_count_multiply(word: str, num: int) -> int:
return len(word) * num
test_01 = word_count_multiply(word="helloworld",num=100)
test_02 = word_count_multiply("hello",200)
반응형
'Python' 카테고리의 다른 글
python yaml config file write and read with pyyml (0) | 2019.02.04 |
---|---|
python config file write and read with configparser (0) | 2019.02.04 |
함수를 변수처럼 전달하기 (0) | 2019.01.06 |
python 다중 상속 (0) | 2019.01.06 |
python class (0) | 2019.01.03 |