Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Last active February 16, 2019 15:19
Show Gist options
  • Save Ventsislav-Yordanov/9320964bee77c0c046120681dd197783 to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/9320964bee77c0c046120681dd197783 to your computer and use it in GitHub Desktop.
def kwargs_example(**kwargs):
print(type(kwargs))
print(kwargs)
kwargs_example(age = 24, position = "data analyst")
kwargs_example(name = "Jake", email = "[email protected]", position = "machine learning engineer")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment