Skip to content

Instantly share code, notes, and snippets.

@wood-push-melon
Created December 11, 2019 15:03
Show Gist options
  • Save wood-push-melon/92c3f914794dffae12e47bb5c21bc5b5 to your computer and use it in GitHub Desktop.
Save wood-push-melon/92c3f914794dffae12e47bb5c21bc5b5 to your computer and use it in GitHub Desktop.
Functions with only Keyword Arguments
def foo(*, a, b):
pass
foo(a="a", b="b")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment