Skip to content

Instantly share code, notes, and snippets.

@umairsd
umairsd / list-ops.py
Created February 24, 2023 20:45
Experiment with Python Type Annotations.
# Learned about Python type annotations.
from typing import Callable
from typing import Any
from typing import TypeVar
T = TypeVar('T')
S = TypeVar('S')
U = TypeVar('U')