Skip to content

Instantly share code, notes, and snippets.

@ItsCosmas
Last active May 9, 2019 09:03
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/212394635afd4dddeefc7de514573d18 to your computer and use it in GitHub Desktop.
Save ItsCosmas/212394635afd4dddeefc7de514573d18 to your computer and use it in GitHub Desktop.
# FUNCTION ARGUMENTS
def function(named_arg, *args):
print(named_arg)
print(args)
function("arg1", "arg2", "arg3", "arg4")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment