Skip to content

Instantly share code, notes, and snippets.

@ItsCosmas
Created May 9, 2019 09:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ItsCosmas/9455c2019c00ca2470ff60a5f2524362 to your computer and use it in GitHub Desktop.
Save ItsCosmas/9455c2019c00ca2470ff60a5f2524362 to your computer and use it in GitHub Desktop.
# KEYWORD ARGUMENTS
def keyword_function(argument=1, **kwargs):
print(argument)
print(kwargs)
keyword_function(x=1, y=2, z=3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment