Dies ist eine alte Version des Dokuments!
Python Typehints
ab Python 3.10 PEP 604 – Allow writing union types as X | Y
Generic Types
check RGB = NewType("RGB", tuple[int, int, int]) check TypeVar ..... # < 3.12 def funktion[T](items: list[T]) -> T: # ab 3.12