Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Created February 16, 2019 15:36
Show Gist options
  • Save Ventsislav-Yordanov/51ae76b5d5fdc9231361638e9b0b5252 to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/51ae76b5d5fdc9231361638e9b0b5252 to your computer and use it in GitHub Desktop.
def print_info(name, position, email):
print("name:", name)
print("position:", position)
print("email:", email)
details = {"email": "[email protected]", "position": "data analyst"}
print_info("Jake", **details)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment