없음을 암시하는 파이썬 3타입? def foo( hello: str='world', bar: str=None, another_string_or_None: str|????=None): pass 함수에서 파이썬에 유형 힌트를 설정하려고 하는데, 다음을 사용하여 둘 이상의 유형 힌트를 추가할 수 있습니다.something: str|bool='default value'하지만, 암시하는 유형은 무엇입니까?None? :/예를 들어, def foo( hello: str='world', bar: str=None, another_string_or_None: str|????=None): ... 귀하의 사용 사례가 "뭔가 또는 없음"이라는 것을 알게 되었습니다. 버전 3.5부터 Python은 모듈을 통해 형식 주석을 지원합..