Created
February 16, 2019 15:36
-
-
Save Ventsislav-Yordanov/51ae76b5d5fdc9231361638e9b0b5252 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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