Python Type Hints Advanced
Links: 108 Python Index
Type Hints¶
Literals¶
from typing import Literal
- Example:
from typing import Literal
def test(a: Literal[5]) -> None:
print(a)
test(a=5)
# we can only pass 5 to the function and not any other int
Last updated: 2022-10-27