Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Naartti/7d697561ab4dbb7d8653523adb77b569 to your computer and use it in GitHub Desktop.
Save Naartti/7d697561ab4dbb7d8653523adb77b569 to your computer and use it in GitHub Desktop.
Typed Python Callable
from typing import Callable
greet_alt_2: Callable[[str], str] = lambda name: f"Hello {name}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment