Created
December 11, 2019 15:03
-
-
Save wood-push-melon/92c3f914794dffae12e47bb5c21bc5b5 to your computer and use it in GitHub Desktop.
Functions with only Keyword Arguments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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