Skip to content

Python Type Hints Advanced

Links: 108 Python Index


Type Hints

Literals

  • from typing import Literal
  • attachments/Pasted image 20221027153655.jpg
  • attachments/Pasted image 20221027153950.jpg
  • 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