Skip to content

Instantly share code, notes, and snippets.

@hashlash
Last active May 14, 2019 02:13
Show Gist options
  • Save hashlash/250889f8994200ba1d4dae30430da5e4 to your computer and use it in GitHub Desktop.
Save hashlash/250889f8994200ba1d4dae30430da5e4 to your computer and use it in GitHub Desktop.
Simple example for using asterisks for unpacking variables (this example is the one without asterisks)
# single parameter function
# expect kwargs as dict
def func3(kwargs):
print(kwargs)
# you can call the function like this
func3({'var1':'hello', 'var2':'world', 'var3':'!'})
# but you can't do something like this
func3(var1='hello', var2='world', var3='!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment