Skip to content

Instantly share code, notes, and snippets.

@skrat
Created August 18, 2014 09:50
Show Gist options
  • Save skrat/a7ade2026b06a8b36b30 to your computer and use it in GitHub Desktop.
Save skrat/a7ade2026b06a8b36b30 to your computer and use it in GitHub Desktop.
In [1]: def one(a=1,b=2):
...: print("a",a,"b",b)
...:
In [2]: one()
('a', 1, 'b', 2)
In [3]: one(*[2])
('a', 2, 'b', 2)
In [4]: one(*[3])
('a', 3, 'b', 2)
In [5]:
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment