Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mingrammer/20220d13bb0cdccefb34aa9996782f66 to your computer and use it in GitHub Desktop.
Save mingrammer/20220d13bb0cdccefb34aa9996782f66 to your computer and use it in GitHub Desktop.
def save_ranking(*args, **kwargs):
print(args)
print(kwargs)
save_ranking('ming', 'alice', 'tom', fourth='wilson', fifth='roy')
# ('ming', 'alice', 'tom')
# {'fourth': 'wilson', 'fifth': 'roy'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment